diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-05-09 01:33:45 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-05-10 21:35:46 +0200 |
| commit | 0f11f0c25465464b28db713cccd37d7d8de483e1 (patch) | |
| tree | 415dc88b05b951f5d590d0c41b52503fd8fd3da5 /src/lib/content.h | |
| parent | b168d211622f94a5240c945c1df03b0bed48d3bc (diff) | |
Allow signals to be blocked and resumed, and so make sure that a set
of content changes taken from an examiner are handled at the same
time.
Should fix DoM #2523.
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index 0ce87ed9b..f2fecddf0 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -234,7 +234,7 @@ private: friend struct best_dcp_frame_rate_test_double; friend struct audio_sampling_rate_test; friend struct subtitle_font_id_change_test2; - template<class, class> friend class ChangeSignaller; + template<class, class> friend class ChangeSignalDespatcher; void signal_change (ChangeType, int); @@ -256,6 +256,7 @@ private: typedef ChangeSignaller<Content, int> ContentChangeSignaller; +typedef ChangeSignalDespatcher<Content, int> ContentChangeSignalDespatcher; #endif |
