summaryrefslogtreecommitdiff
path: root/src/wx/content_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-10 22:02:09 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-11 11:58:15 +0100
commit23583dfb56181c76126e652042e9d1940367aa27 (patch)
treee4e0711ea1b132aacee524e54014497ece5e9916 /src/wx/content_panel.h
parent2a0ad7979b208f84916b13f7a37998aa3701e371 (diff)
Partial split of film viewer.
Diffstat (limited to 'src/wx/content_panel.h')
-rw-r--r--src/wx/content_panel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/content_panel.h b/src/wx/content_panel.h
index 33a7866e4..e9f942d09 100644
--- a/src/wx/content_panel.h
+++ b/src/wx/content_panel.h
@@ -37,12 +37,12 @@ class VideoPanel;
class AudioPanel;
class TimingPanel;
class Film;
-class FilmViewer;
+class ControlFilmViewer;
class ContentPanel : public boost::noncopyable
{
public:
- ContentPanel (wxNotebook *, boost::shared_ptr<Film>, FilmViewer* viewer);
+ ContentPanel (wxNotebook *, boost::shared_ptr<Film>, ControlFilmViewer* viewer);
boost::shared_ptr<Film> film () const {
return _film;
@@ -74,7 +74,7 @@ public:
bool remove_clicked (bool hotkey);
void timeline_clicked ();
- FilmViewer* film_viewer () const {
+ ControlFilmViewer* film_viewer () const {
return _film_viewer;
}
@@ -120,7 +120,7 @@ private:
wxWindow* _last_selected_tab;
boost::shared_ptr<Film> _film;
- FilmViewer* _film_viewer;
+ ControlFilmViewer* _film_viewer;
bool _generally_sensitive;
bool _ignore_deselect;
};