summaryrefslogtreecommitdiff
path: root/FL/Fl_Input_Choice.H
diff options
context:
space:
mode:
authormaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
committermaxim nikonov <maxim.nikonov@hqo.co>2026-02-05 16:24:45 +0500
commitcdf2832347b8fdf0389cd373c2ead0ac5d071037 (patch)
tree96f9771aed0710899aa6cbba2a84dadfe76e996e /FL/Fl_Input_Choice.H
parentdb214d1145e46d527a46d1fc2519548d2c4d23f1 (diff)
wip
Diffstat (limited to 'FL/Fl_Input_Choice.H')
-rw-r--r--FL/Fl_Input_Choice.H8
1 files changed, 4 insertions, 4 deletions
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,