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 cad68a3a0..93b3431bc 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) FL_OVERRIDE; // implemented in src/Fl_Spinner.cxx
+ int handle(int event) override; // 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() FL_OVERRIDE;
+ void draw() override;
public:
// Constructor
Fl_Spinner(int X, int Y, int W, int H, const char *L = 0);
// Event handling
- int handle(int event) FL_OVERRIDE;
+ int handle(int event) override;
// Resize group and subwidgets
- void resize(int X, int Y, int W, int H) FL_OVERRIDE;
+ void resize(int X, int Y, int W, int H) override;
/** Returns the format string for the value. */
const char *format() const { return (format_); }