diff options
| author | Matthias Melcher <github@matthiasm.com> | 2022-12-30 19:14:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-30 19:14:36 +0100 |
| commit | 44c874b731f9f58c2f50c3c6076371058cbe26e3 (patch) | |
| tree | 2386dfcc700c41a1109fc78b96875c11056abcc9 /examples/table-spreadsheet-with-keyboard-nav.cxx | |
| parent | f58a93a159105336136ce6e54ab7fc161e4fa15a (diff) | |
Use `FL_OVERRIDE` for all overridden virtual methods (#611)
FL_OVERRIDE is defined as `override` for C++11 and higher
FL_OVERRIDE is defined as `override` for VisualC 2015 and newer
Don't interfere with Fl_Widget::override()
Diffstat (limited to 'examples/table-spreadsheet-with-keyboard-nav.cxx')
| -rw-r--r-- | examples/table-spreadsheet-with-keyboard-nav.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/table-spreadsheet-with-keyboard-nav.cxx b/examples/table-spreadsheet-with-keyboard-nav.cxx index ec8714df3..8b6dd7510 100644 --- a/examples/table-spreadsheet-with-keyboard-nav.cxx +++ b/examples/table-spreadsheet-with-keyboard-nav.cxx @@ -40,7 +40,7 @@ class Spreadsheet : public Fl_Table { int s_left, s_top, s_right, s_bottom; // kb nav + mouse selection protected: - void draw_cell(TableContext context,int=0,int=0,int=0,int=0,int=0,int=0); + void draw_cell(TableContext context,int=0,int=0,int=0,int=0,int=0,int=0) FL_OVERRIDE; void event_callback2(); // table's event callback (instance) static void event_callback(Fl_Widget*, void *v) { // table's event callback (static) ((Spreadsheet*)v)->event_callback2(); @@ -75,11 +75,11 @@ public: window()->cursor(FL_CURSOR_DEFAULT); // XXX: if we don't do this, cursor can disappear! } // Change number of rows - void rows(int val) { + void rows(int val) FL_OVERRIDE { Fl_Table::rows(val); } // Change number of columns - void cols(int val) { + void cols(int val) FL_OVERRIDE { Fl_Table::cols(val); } // Get number of rows |
