summaryrefslogtreecommitdiff
path: root/FL/Fl_Browser.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Browser.H')
-rw-r--r--FL/Fl_Browser.H8
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 ;