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/playlist.cc | |
| parent | 3bc9ca466dc3e9afaf290283d6895338f23c948d (diff) | |
Remove unused content pointer from change signals.
Diffstat (limited to 'src/lib/playlist.cc')
| -rw-r--r-- | src/lib/playlist.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc index 7385c8ad5..8c60a5458 100644 --- a/src/lib/playlist.cc +++ b/src/lib/playlist.cc @@ -89,7 +89,7 @@ Playlist::~Playlist() void -Playlist::content_change(weak_ptr<const Film> weak_film, ChangeType type, weak_ptr<Content> content, int property, bool frequent) +Playlist::content_change(weak_ptr<const Film> weak_film, ChangeType type, int property, bool frequent) { auto film = weak_film.lock(); DCPOMATIC_ASSERT(film); @@ -133,7 +133,7 @@ Playlist::content_change(weak_ptr<const Film> weak_film, ChangeType type, weak_p } } - ContentChange(type, content, property, frequent); + ContentChange(type, property, frequent); } @@ -516,7 +516,7 @@ Playlist::reconnect(shared_ptr<const Film> film) disconnect(); for (auto i: _content) { - _content_connections.push_back(i->Change.connect(boost::bind(&Playlist::content_change, this, film, _1, _2, _3, _4))); + _content_connections.push_back(i->Change.connect(boost::bind(&Playlist::content_change, this, film, _1, _2, _3))); } } |
