diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-11 01:25:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-11 11:58:15 +0100 |
| commit | c370a1f38215f6461cf4366e6885757e7aa2b96a (patch) | |
| tree | 6d660895988652297260c2434115b903032bc60d /src/wx/timing_panel.h | |
| parent | 23b60bec13fa8f0b88c34922a169aa0084d99476 (diff) | |
Separate out management of controls.
Diffstat (limited to 'src/wx/timing_panel.h')
| -rw-r--r-- | src/wx/timing_panel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h index 7e38d86b8..65d8aabc9 100644 --- a/src/wx/timing_panel.h +++ b/src/wx/timing_panel.h @@ -21,12 +21,12 @@ #include "content_sub_panel.h" #include "timecode.h" -class ControlFilmViewer; +class FilmViewer; class TimingPanel : public ContentSubPanel { public: - TimingPanel (ContentPanel *, ControlFilmViewer* viewer); + TimingPanel (ContentPanel *, boost::weak_ptr<FilmViewer> viewer); void film_changed (Film::Property); void film_content_changed (int); @@ -48,7 +48,7 @@ private: void setup_sensitivity (); void add_to_grid (); - ControlFilmViewer* _viewer; + boost::weak_ptr<FilmViewer> _viewer; wxStaticText* _h_label; wxStaticText* _m_label; |
