summaryrefslogtreecommitdiff
path: root/FL/Fl_Input_Choice.H
diff options
context:
space:
mode:
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,