diff options
Diffstat (limited to 'src/PatchageModule.hpp')
-rw-r--r-- | src/PatchageModule.hpp | 4 |
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; |