diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-06-09 00:17:13 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-09-27 13:41:46 +0200 |
| commit | 4f4561c4b5bb1e8a2fa8e673606d18ffa25aec6c (patch) | |
| tree | 85d897751e2ea5616879aa6cc2808539dc281823 /src/wx/simple_video_view.h | |
| parent | 0b791ea708dfa1f5cd44522988dd5efdf2a0b94b (diff) | |
C++11 tidying.
Diffstat (limited to 'src/wx/simple_video_view.h')
| -rw-r--r-- | src/wx/simple_video_view.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/simple_video_view.h b/src/wx/simple_video_view.h index 31756b5d8..26d1299b1 100644 --- a/src/wx/simple_video_view.h +++ b/src/wx/simple_video_view.h @@ -33,13 +33,13 @@ class SimpleVideoView : public VideoView public: SimpleVideoView (FilmViewer* viewer, wxWindow* parent); - wxWindow* get () const { + wxWindow* get () const override { return _panel; } - void update (); - void start (); - NextFrameResult display_next_frame (bool non_blocking); + void update () override; + void start () override; + NextFrameResult display_next_frame (bool non_blocking) override; private: void set_image (std::shared_ptr<const Image> image) { |
