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_Grid.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_Grid.H')
| -rw-r--r-- | FL/Fl_Grid.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Grid.H b/FL/Fl_Grid.H index a557fb12a..5e6c278cd 100644 --- a/FL/Fl_Grid.H +++ b/FL/Fl_Grid.H @@ -270,7 +270,7 @@ public: virtual void layout(int rows, int cols, int margin = -1, int gap = -1); virtual void layout(); virtual void clear_layout(); - virtual void resize(int X, int Y, int W, int H) FL_OVERRIDE; + virtual void resize(int X, int Y, int W, int H) override; short rows() const { return rows_; } short cols() const { return cols_; } @@ -303,8 +303,8 @@ public: } protected: - virtual void draw() FL_OVERRIDE; - void on_remove(int) FL_OVERRIDE; + virtual void draw() override; + void on_remove(int) override; virtual void draw_grid(); // draw grid lines for debugging public: |
