diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-09 13:58:27 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-28 23:42:29 +0200 |
| commit | 0dcacddac3ba086b16d5c0577f4a44c12dd564a9 (patch) | |
| tree | 698fc6162fe09bd05b075c07fb14d70f5ddd65df /src/tools/dcpomatic_server.cc | |
| parent | e6e220eb80ec8258e417794e0f142ebddffc6c25 (diff) | |
Add some missing override labels.
Diffstat (limited to 'src/tools/dcpomatic_server.cc')
| -rw-r--r-- | src/tools/dcpomatic_server.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/dcpomatic_server.cc b/src/tools/dcpomatic_server.cc index 401fb1077..de25f531d 100644 --- a/src/tools/dcpomatic_server.cc +++ b/src/tools/dcpomatic_server.cc @@ -87,7 +87,7 @@ public: boost::signals2::signal<void(int)> Removed; private: - void do_log (shared_ptr<const LogEntry> entry) + void do_log (shared_ptr<const LogEntry> entry) override { time_t const s = entry->seconds (); struct tm* local = localtime (&s); @@ -226,7 +226,7 @@ public: Bind (wxEVT_MENU, boost::bind (&TaskBarIcon::quit, this), ID_quit); } - wxMenu* CreatePopupMenu () + wxMenu* CreatePopupMenu () override { auto menu = new wxMenu; menu->Append (ID_status, std_to_wx ("Status...")); @@ -273,7 +273,7 @@ public: private: - bool OnInit () + bool OnInit () override { if (!wxApp::OnInit()) { return false; @@ -327,7 +327,7 @@ private: return true; } - int OnExit () + int OnExit () override { delete _icon; return wxApp::OnExit (); |
