diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-06-22 17:23:47 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-06-22 17:23:47 +0200 |
| commit | 6ce132398c4c2f0c4b05fcdd8e386f47ac136097 (patch) | |
| tree | 236daac0535bbff9d5b8a730bd6c920fd5ae3ede /src | |
| parent | 5c5f9d4f408df440d2baae93fad129c66921cd26 (diff) | |
set_film() no longer needs to be virtual.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/controls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/controls.h b/src/wx/controls.h index 321d7e05c..f0819c515 100644 --- a/src/wx/controls.h +++ b/src/wx/controls.h @@ -59,7 +59,7 @@ public: bool editor_controls = true ); - virtual void set_film (std::shared_ptr<Film> film); + void set_film (std::shared_ptr<Film> film); virtual void play () {}; virtual void stop () {}; |
