summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphWindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/GraphWindow.hpp')
-rw-r--r--src/gui/GraphWindow.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/GraphWindow.hpp b/src/gui/GraphWindow.hpp
index 69b8a3d4..bdcda312 100644
--- a/src/gui/GraphWindow.hpp
+++ b/src/gui/GraphWindow.hpp
@@ -46,7 +46,7 @@ public:
~GraphWindow();
- void init_window(App& app);
+ void init_window(App& app) override;
SPtr<const client::GraphModel> graph() const { return _box->graph(); }
GraphBox* box() const { return _box; }
@@ -63,9 +63,9 @@ public:
}
protected:
- void on_hide();
- void on_show();
- bool on_key_press_event(GdkEventKey* event);
+ void on_hide() override;
+ void on_show() override;
+ bool on_key_press_event(GdkEventKey* event) override;
private:
GraphBox* _box;