summaryrefslogtreecommitdiff
path: root/FL/Fl_Spinner.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Spinner.H')
-rw-r--r--FL/Fl_Spinner.H8
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Spinner.H b/FL/Fl_Spinner.H
index 93b3431bc..d90a837b5 100644
--- a/FL/Fl_Spinner.H
+++ b/FL/Fl_Spinner.H
@@ -58,7 +58,7 @@ protected:
public:
Fl_Spinner_Input(int X, int Y, int W, int H)
: Fl_Input(X, Y, W, H) {}
- int handle(int event) override; // implemented in src/Fl_Spinner.cxx
+ int handle(int event); // implemented in src/Fl_Spinner.cxx
};
Fl_Spinner_Input input_; // Input field for the value
@@ -66,16 +66,16 @@ protected:
up_button_, // Up button
down_button_; // Down button
- void draw() override;
+ void draw();
public:
// Constructor
Fl_Spinner(int X, int Y, int W, int H, const char *L = 0);
// Event handling
- int handle(int event) override;
+ int handle(int event);
// Resize group and subwidgets
- void resize(int X, int Y, int W, int H) override;
+ void resize(int X, int Y, int W, int H);
/** Returns the format string for the value. */
const char *format() const { return (format_); }