diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-16 00:50:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-16 00:57:23 +0200 |
| commit | 2a7f3a1840bf2495656efff17a6c35ab3873b441 (patch) | |
| tree | aec803fbfced7c575a2fa0998e7be7fcbf1a2ea3 /src/lib/film.h | |
| parent | 3bc9ca466dc3e9afaf290283d6895338f23c948d (diff) | |
Remove unused content pointer from change signals.
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index c4c55a12a..8574c700f 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -444,7 +444,7 @@ public: mutable boost::signals2::signal<void (ChangeType, FilmProperty)> Change; /** Emitted when some property of our content has changed */ - mutable boost::signals2::signal<void (ChangeType, std::weak_ptr<Content>, int, bool)> ContentChange; + mutable boost::signals2::signal<void (ChangeType, int, bool)> ContentChange; /** Emitted when the film's length might have changed; this is not like a normal property as its value is derived from the playlist, so it has its own signal. @@ -475,7 +475,7 @@ private: void signal_change(ChangeType, int); void playlist_change(ChangeType); void playlist_order_changed(); - void playlist_content_change(ChangeType type, std::weak_ptr<Content>, int, bool frequent); + void playlist_content_change(ChangeType type, int, bool frequent); void playlist_length_change(); void maybe_add_content(std::weak_ptr<Job>, std::vector<std::weak_ptr<Content>> const& weak_content, bool disable_audio_analysis); void audio_analysis_finished(); |
