summaryrefslogtreecommitdiffstats
path: root/src/PatchageModule.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-27 17:58:08 +0100
committerDavid Robillard <d@drobilla.net>2020-11-27 21:42:52 +0100
commit5d588ee9d7fb7da1c3ef6fef2fe30804d23bb857 (patch)
treeba594e3f70699148e4d7123f2e892e8e954ce622 /src/PatchageModule.hpp
parent5015c289a5c4bcc88b5849d6c137f7f2bd2fde4e (diff)
downloadpatchage-5d588ee9d7fb7da1c3ef6fef2fe30804d23bb857.tar.gz
patchage-5d588ee9d7fb7da1c3ef6fef2fe30804d23bb857.tar.bz2
patchage-5d588ee9d7fb7da1c3ef6fef2fe30804d23bb857.zip
Use "override"
Diffstat (limited to 'src/PatchageModule.hpp')
-rw-r--r--src/PatchageModule.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp
index 6135a0e..249f0ce 100644
--- a/src/PatchageModule.hpp
+++ b/src/PatchageModule.hpp
@@ -41,7 +41,7 @@ public:
double x = 0,
double y = 0);
- ~PatchageModule();
+ ~PatchageModule() override;
void split();
void join();
@@ -60,7 +60,7 @@ public:
const std::string& name() const { return _name; }
protected:
- bool on_event(GdkEvent* ev);
+ bool on_event(GdkEvent* ev) override;
Patchage* _app;
Gtk::Menu* _menu;