summaryrefslogtreecommitdiff
path: root/src/wx/gl_video_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-06-09 00:17:13 +0200
committerCarl Hetherington <cth@carlh.net>2021-09-27 13:41:46 +0200
commit4f4561c4b5bb1e8a2fa8e673606d18ffa25aec6c (patch)
tree85d897751e2ea5616879aa6cc2808539dc281823 /src/wx/gl_video_view.h
parent0b791ea708dfa1f5cd44522988dd5efdf2a0b94b (diff)
C++11 tidying.
Diffstat (limited to 'src/wx/gl_video_view.h')
-rw-r--r--src/wx/gl_video_view.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wx/gl_video_view.h b/src/wx/gl_video_view.h
index 4a2184f40..0186417d2 100644
--- a/src/wx/gl_video_view.h
+++ b/src/wx/gl_video_view.h
@@ -40,14 +40,14 @@ public:
GLVideoView (FilmViewer* viewer, wxWindow* parent);
~GLVideoView ();
- wxWindow* get () const {
+ wxWindow* get () const override {
return _canvas;
}
- void update ();
- void start ();
- void stop ();
+ void update () override;
+ void start () override;
+ void stop () override;
- NextFrameResult display_next_frame (bool);
+ NextFrameResult display_next_frame (bool) override;
bool vsync_enabled () const {
return _vsync_enabled;