diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-17 22:07:25 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-28 23:43:15 +0200 |
| commit | fade9084760ba362cdd7d651011296ef81723e59 (patch) | |
| tree | a05abfa731737846a4bae115a4ca03550b512cef | |
| parent | 503520236e21e8441a03cb27cb29262241951220 (diff) | |
Add more missing override labels.
| -rw-r--r-- | src/tools/dcpomatic_create.cc | 2 | ||||
| -rw-r--r-- | src/tools/dcpomatic_kdm.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 44c7987bc..4c40c24d3 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -61,7 +61,7 @@ public: /* Do nothing in this method so that UI events happen in our thread when we call SignalManager::ui_idle(). */ - void wake_ui () {} + void wake_ui () override {} }; int diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc index 481b0fb8b..65bb921e5 100644 --- a/src/tools/dcpomatic_kdm.cc +++ b/src/tools/dcpomatic_kdm.cc @@ -690,7 +690,7 @@ private: } /* An unhandled exception has occurred inside the main event loop */ - bool OnExceptionInMainLoop () + bool OnExceptionInMainLoop () override { try { throw; |
