diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-31 23:47:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-31 23:47:14 +0100 |
| commit | e0255a64d22440d718e5512f34a4f21f0d37a21b (patch) | |
| tree | 61927018d28794c7c32c238bc37259bfddb2f01c /src/wx/timeline_content_view.h | |
| parent | 8fedaaa75c4586a4cc7ffb393bd71d1fdb091dc8 (diff) | |
Use enum class for Film::Property.
Diffstat (limited to 'src/wx/timeline_content_view.h')
| -rw-r--r-- | src/wx/timeline_content_view.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/timeline_content_view.h b/src/wx/timeline_content_view.h index fcc068064..e9b294854 100644 --- a/src/wx/timeline_content_view.h +++ b/src/wx/timeline_content_view.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net> This file is part of DCP-o-matic. @@ -21,6 +21,7 @@ #ifndef DCPOMATIC_TIMELINE_CONTENT_VIEW_H #define DCPOMATIC_TIMELINE_CONTENT_VIEW_H +#include "lib/change_signaller.h" #include "lib/types.h" #include "lib/warnings.h" #include "timeline_view.h" @@ -64,7 +65,7 @@ private: void content_change (ChangeType type, int p); boost::optional<int> _track; - bool _selected; + bool _selected = false; boost::signals2::scoped_connection _content_connection; }; |
