diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-08 14:59:37 +0200 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-07-08 15:25:14 +0200 |
| commit | 3cf5a302fd2225b8d2622eb40e91262f4e7557c1 (patch) | |
| tree | 2bd4ad8207dc22a819518719a9e00a1ae492fd03 /FL/Fl_Scroll.H | |
| parent | 2803f70f584f3a3d88d02b122f44b90d15cc22c1 (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_Scroll.H')
| -rw-r--r-- | FL/Fl_Scroll.H | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/FL/Fl_Scroll.H b/FL/Fl_Scroll.H index 0331c8330..fbcd02946 100644 --- a/FL/Fl_Scroll.H +++ b/FL/Fl_Scroll.H @@ -146,19 +146,19 @@ protected: // (STR#1895) protected: - int on_insert(Fl_Widget*, int) FL_OVERRIDE; - int on_move(int, int) FL_OVERRIDE; + int on_insert(Fl_Widget*, int) override; + int on_move(int, int) override; void fix_scrollbar_order(); void bbox(int&,int&,int&,int&) const; - void draw() FL_OVERRIDE; + void draw() override; public: Fl_Scrollbar scrollbar; Fl_Scrollbar hscrollbar; - void resize(int X, int Y, int W, int H) FL_OVERRIDE; - int handle(int) FL_OVERRIDE; + void resize(int X, int Y, int W, int H) override; + int handle(int) override; Fl_Scroll(int X, int Y, int W, int H, const char *L = 0); virtual ~Fl_Scroll(); @@ -181,7 +181,7 @@ public: void clear(); /* delete child n (by index) */ - int delete_child(int n) FL_OVERRIDE; + int delete_child(int n) override; /** Gets the current size of the scrollbars' troughs, in pixels. |
