summaryrefslogtreecommitdiff
path: root/FL/Fl_Tabs.H
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2025-07-08 14:59:37 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2025-07-08 15:25:14 +0200
commit3cf5a302fd2225b8d2622eb40e91262f4e7557c1 (patch)
tree2bd4ad8207dc22a819518719a9e00a1ae492fd03 /FL/Fl_Tabs.H
parent2803f70f584f3a3d88d02b122f44b90d15cc22c1 (diff)
Replace 'FL_OVERRIDE' with 'override' in public headers
... except FL/fl_attr.h where FL_OVERRIDE is #define'd
Diffstat (limited to 'FL/Fl_Tabs.H')
-rw-r--r--FL/Fl_Tabs.H16
1 files changed, 8 insertions, 8 deletions
diff --git a/FL/Fl_Tabs.H b/FL/Fl_Tabs.H
index b1824142f..3ac76e3b5 100644
--- a/FL/Fl_Tabs.H
+++ b/FL/Fl_Tabs.H
@@ -266,9 +266,9 @@ protected:
void handle_overflow_menu();
void draw_overflow_menu_button();
- int on_insert(Fl_Widget*, int) FL_OVERRIDE;
- int on_move(int, int) FL_OVERRIDE;
- void on_remove(int) FL_OVERRIDE;
+ int on_insert(Fl_Widget*, int) override;
+ int on_move(int, int) override;
+ void on_remove(int) override;
virtual void redraw_tabs();
virtual int tab_positions(); // allocate and calculate tab positions
@@ -279,17 +279,17 @@ protected:
virtual int hit_overflow_menu(int event_x, int event_y);
virtual int hit_tabs_area(int event_x, int event_y);
- void draw() FL_OVERRIDE;
+ void draw() override;
public:
Fl_Tabs(int X, int Y, int W, int H, const char *L = 0);
- ~Fl_Tabs() FL_OVERRIDE;
+ ~Fl_Tabs() override;
- void resize(int, int, int, int) FL_OVERRIDE;
- void show() FL_OVERRIDE;
+ void resize(int, int, int, int) override;
+ void show() override;
- int handle(int) FL_OVERRIDE;
+ int handle(int) override;
Fl_Widget *value();
int value(Fl_Widget *);