summaryrefslogtreecommitdiff
path: root/FL/Fl_Check_Browser.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_Check_Browser.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_Check_Browser.H')
-rw-r--r--FL/Fl_Check_Browser.H24
1 files changed, 12 insertions, 12 deletions
diff --git a/FL/Fl_Check_Browser.H b/FL/Fl_Check_Browser.H
index 50a719f7a..63eb55dc1 100644
--- a/FL/Fl_Check_Browser.H
+++ b/FL/Fl_Check_Browser.H
@@ -31,20 +31,20 @@ class FL_EXPORT Fl_Check_Browser : public Fl_Browser_ {
protected:
/* required routines for Fl_Browser_ subclass: */
- void *item_first() const FL_OVERRIDE;
- void *item_next(void *) const FL_OVERRIDE;
- void *item_prev(void *) const FL_OVERRIDE;
- int item_height(void *) const FL_OVERRIDE;
- int item_width(void *) const FL_OVERRIDE;
- void item_draw(void *, int, int, int, int) const FL_OVERRIDE;
- void item_select(void *, int) FL_OVERRIDE;
- int item_selected(void *) const FL_OVERRIDE;
- const char *item_text(void *item) const FL_OVERRIDE;
+ void *item_first() const override;
+ void *item_next(void *) const override;
+ void *item_prev(void *) const override;
+ int item_height(void *) const override;
+ int item_width(void *) const override;
+ void item_draw(void *, int, int, int, int) const override;
+ void item_select(void *, int) override;
+ int item_selected(void *) const override;
+ const char *item_text(void *item) const override;
public:
- void *item_at(int index) const FL_OVERRIDE;
+ void *item_at(int index) const override;
void item_swap(int ia, int ib);
- void item_swap(void *a, void *b) FL_OVERRIDE;
+ void item_swap(void *a, void *b) override;
/* private data */
@@ -104,7 +104,7 @@ public:
char *text(int item) const; // returns pointer to internal buffer
protected:
- int handle(int) FL_OVERRIDE;
+ int handle(int) override;
};
#endif // Fl_Check_Browser_H