summaryrefslogtreecommitdiff
path: root/FL/Fl_Spinner.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_Spinner.H
parentdb214d1145e46d527a46d1fc2519548d2c4d23f1 (diff)
wip
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_); }