summaryrefslogtreecommitdiff
path: root/src/lib/content.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/content.h
parentaf517d2d2a0a02ea167ffac4c617845727984720 (diff)
wip: hacksprocessor
Diffstat (limited to 'src/lib/content.h')
-rw-r--r--src/lib/content.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/content.h b/src/lib/content.h
index d84505b72..0314d2c13 100644
--- a/src/lib/content.h
+++ b/src/lib/content.h
@@ -219,7 +219,7 @@ public:
bool has_mapped_audio() const;
/* ChangeType::PENDING and ChangeType::CANCELLED may be emitted from any thread; ChangeType::DONE always from GUI thread */
- boost::signals2::signal<void (ChangeType, int, bool)> Change;
+ boost::signals2::signal<void (ChangeType, int, bool, int)> Change;
std::shared_ptr<VideoContent> video;
std::shared_ptr<AudioContent> audio;
@@ -251,7 +251,7 @@ private:
friend struct subtitle_font_id_change_test2;
template<class, class> friend class ChangeSignalDespatcher;
- void signal_change(ChangeType, int);
+ void signal_change(ChangeType, int, int id);
/** Paths of our data files */
std::vector<boost::filesystem::path> _paths;