From bee4323aa7034d1b97662fcf39f8ebb498d20a12 Mon Sep 17 00:00:00 2001 From: rdanbrook <1869094+rdanbrook@users.noreply.github.com> Date: Mon, 30 Sep 2024 22:16:59 -0600 Subject: [PATCH] FLTK: Mark functions override --- source/fltkui/fltkui.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/fltkui/fltkui.h b/source/fltkui/fltkui.h index bea378a..ba3b433 100644 --- a/source/fltkui/fltkui.h +++ b/source/fltkui/fltkui.h @@ -17,7 +17,7 @@ constexpr int UI_DIAL_SM = 40; class NstWindow : public Fl_Double_Window { private: - int handle(int e); + int handle(int e) override; public: NstWindow(int w, int h, const char* t = 0) : Fl_Double_Window(w, h, t) {} @@ -26,8 +26,8 @@ public: class NstGlArea : public Fl_Gl_Window { private: - void draw(); - int handle(int e); + void draw() override; + int handle(int e) override; public: NstGlArea(int x, int y, int w, int h, const char *l = 0) : Fl_Gl_Window(x, y, w, h, l) {}