From cdf2832347b8fdf0389cd373c2ead0ac5d071037 Mon Sep 17 00:00:00 2001 From: maxim nikonov Date: Thu, 5 Feb 2026 16:24:45 +0500 Subject: wip --- FL/Fl_Input_Choice.H | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'FL/Fl_Input_Choice.H') diff --git a/FL/Fl_Input_Choice.H b/FL/Fl_Input_Choice.H index 0339add1f..b2023052f 100644 --- a/FL/Fl_Input_Choice.H +++ b/FL/Fl_Input_Choice.H @@ -44,11 +44,11 @@ class FL_EXPORT Fl_Input_Choice : public Fl_Group { // Private class to handle slightly 'special' behavior of menu button class InputMenuButton : public Fl_Menu_Button { - void draw() override; + void draw(); const Fl_Menu_Item* popup(); public: InputMenuButton(int X, int Y, int W, int H, const char *L=0); - int handle(int e) override; + int handle(int e); }; Fl_Input *inp_; @@ -89,13 +89,13 @@ protected: /** See menu_x() for info. */ virtual int menu_h() const { return h() - Fl::box_dh(box()); } - void draw() override; + void draw(); public: Fl_Input_Choice(int X, int Y, int W, int H, const char *L=0); - void resize(int X, int Y, int W, int H) override; + void resize(int X, int Y, int W, int H); /** Adds an item to the menu. When any item is selected, the Fl_Input_Choice callback() is invoked, -- cgit v1.2.3