From 5d588ee9d7fb7da1c3ef6fef2fe30804d23bb857 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 27 Nov 2020 17:58:08 +0100 Subject: Use "override" --- src/PatchageModule.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/PatchageModule.hpp') 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; -- cgit v1.2.1