summaryrefslogtreecommitdiff
path: root/src/lib/video_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-10-25 23:52:42 +0100
committerCarl Hetherington <cth@carlh.net>2014-10-25 23:52:42 +0100
commite749511fb4839feaccc94d506fa13b89ab13a570 (patch)
tree9076816deefe1737c0c0161e823d150e89cd493a /src/lib/video_content.h
parent9fb8582bec18471ed9f6e3feb71aca5d1c9e6d3f (diff)
Fix crash when signalling VideoContent during the constructor (hence indirectly causing shared_from_this to be called too early).
Diffstat (limited to 'src/lib/video_content.h')
-rw-r--r--src/lib/video_content.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_content.h b/src/lib/video_content.h
index 3c8e5fefd..b5936d16d 100644
--- a/src/lib/video_content.h
+++ b/src/lib/video_content.h
@@ -91,7 +91,7 @@ public:
void set_scale (VideoContentScale);
void unset_colour_conversion ();
void set_colour_conversion (ColourConversion);
- void set_default_colour_conversion ();
+ void set_default_colour_conversion (bool signal = true);
void set_fade_in (ContentTime);
void set_fade_out (ContentTime);