diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-09 13:58:27 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-09 13:58:27 +0200 |
| commit | b915348a8288d68e2ff114fb3dd89ad22e699969 (patch) | |
| tree | 46ce54a62bef93a544ada376d2c42ad4ab50f596 /src/wx/playlist_controls.h | |
| parent | c80f7a440de73dead499764b4073d39d54c68b9f (diff) | |
Add some missing override labels.
Diffstat (limited to 'src/wx/playlist_controls.h')
| -rw-r--r-- | src/wx/playlist_controls.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/wx/playlist_controls.h b/src/wx/playlist_controls.h index 8375f952e..57a84c128 100644 --- a/src/wx/playlist_controls.h +++ b/src/wx/playlist_controls.h @@ -28,7 +28,7 @@ class PlaylistControls : public Controls public: PlaylistControls (wxWindow* parent, std::shared_ptr<FilmViewer> viewer); - void set_film (std::shared_ptr<Film> film); + void set_film (std::shared_ptr<Film> film) override; /** This is so that we can tell our parent player to reset the film when we have created one from a SPL. We could call a method @@ -36,8 +36,8 @@ public: */ boost::signals2::signal<void (std::weak_ptr<Film>)> ResetFilm; - void play (); - void stop (); + void play () override; + void stop () override; private: void play_clicked (); @@ -50,10 +50,10 @@ private: void update_playlist_directory (); void spl_selection_changed (); void select_playlist (int selected, int position); - void started (); - void stopped (); - void setup_sensitivity (); - void config_changed (int); + void started () override; + void stopped () override; + void setup_sensitivity () override; + void config_changed (int) override; void viewer_finished (); void reset_film (); void update_current_content (); |
