diff options
| author | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 16:24:45 +0500 |
|---|---|---|
| committer | maxim nikonov <maxim.nikonov@hqo.co> | 2026-02-05 16:24:45 +0500 |
| commit | cdf2832347b8fdf0389cd373c2ead0ac5d071037 (patch) | |
| tree | 96f9771aed0710899aa6cbba2a84dadfe76e996e /FL/Fl_Browser.H | |
| parent | db214d1145e46d527a46d1fc2519548d2c4d23f1 (diff) | |
wip
Diffstat (limited to 'FL/Fl_Browser.H')
| -rw-r--r-- | FL/Fl_Browser.H | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_Browser.H b/FL/Fl_Browser.H index 182adb871..bc341b7ac 100644 --- a/FL/Fl_Browser.H +++ b/FL/Fl_Browser.H @@ -103,7 +103,7 @@ protected: void* item_prev(void* item) const override; void* item_last()const override; int item_selected(void* item) const override; - void item_select(void* item, int val) override; + void item_select(void* item, int val); int item_height(void* item) const override; int item_width(void* item) const override; void item_draw(void* item, int X, int Y, int W, int H) const override; @@ -115,7 +115,7 @@ protected: \param[in] a,b the items to be swapped. \see swap(int,int), item_swap() */ - void item_swap(void *a, void *b) override { swap((FL_BLINE*)a, (FL_BLINE*)b); } + void item_swap(void *a, void *b) { swap((FL_BLINE*)a, (FL_BLINE*)b); } /** Return the item at specified \p line. \param[in] line The line of the item to return. (1 based) \returns The item, or NULL if line out of range. @@ -188,10 +188,10 @@ public: int selected(int line) const ; void show(int line); /** Shows the entire Fl_Browser widget -- opposite of hide(). */ - void show() override { Fl_Widget::show(); } + void show() { Fl_Widget::show(); } void hide(int line); /** Hides the entire Fl_Browser widget -- opposite of show(). */ - void hide() override { Fl_Widget::hide(); } + void hide() { Fl_Widget::hide(); } int visible(int line) const ; int value() const ; |
