summaryrefslogtreecommitdiff
path: root/src/lib/playlist.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-11-03 09:07:27 +0100
committerCarl Hetherington <cth@carlh.net>2025-11-03 09:07:27 +0100
commit961754d68b85324091e29d8e8eb19c4fdf32abe6 (patch)
tree8dc76d59ec82c7886b5cab82d2ea6a31af9d608e /src/lib/playlist.h
parentaf517d2d2a0a02ea167ffac4c617845727984720 (diff)
wip: hacksprocessor
Diffstat (limited to 'src/lib/playlist.h')
-rw-r--r--src/lib/playlist.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/playlist.h b/src/lib/playlist.h
index 0d38cbf67..649492544 100644
--- a/src/lib/playlist.h
+++ b/src/lib/playlist.h
@@ -82,15 +82,15 @@ public:
void repeat(std::shared_ptr<const Film> film, ContentList, int);
/** Emitted when content has been added to or removed from the playlist; implies OrderChange */
- mutable boost::signals2::signal<void (ChangeType)> Change;
+ mutable boost::signals2::signal<void (ChangeType, int)> Change;
mutable boost::signals2::signal<void ()> OrderChange;
/** Emitted when the length might have changed; may sometimes be emitted when it has not */
mutable boost::signals2::signal<void ()> LengthChange;
- mutable boost::signals2::signal<void (ChangeType, int, bool)> ContentChange;
+ mutable boost::signals2::signal<void (ChangeType, int, bool, int)> ContentChange;
private:
- void content_change(std::weak_ptr<const Film>, ChangeType, int, bool);
+ void content_change(std::weak_ptr<const Film>, ChangeType, int, bool, int id);
void disconnect();
void reconnect(std::shared_ptr<const Film> film);