diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Table.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Fl_Table.cxx b/src/Fl_Table.cxx index b7fb817c4..c3fddc5fa 100644 --- a/src/Fl_Table.cxx +++ b/src/Fl_Table.cxx @@ -1206,8 +1206,11 @@ int Fl_Table::is_selected(int r, int c) { \param[in] col_left Returns the left column of selection area \param[in] row_bot Returns the bottom row of selection area \param[in] col_right Returns the right column of selection area + + \internal + This method is 'const' since FLTK 1.5 (and 1.4.5 ABI), see issue #1305 */ -void Fl_Table::get_selection(int& row_top, int& col_left, int& row_bot, int& col_right) { +void Fl_Table::get_selection(int& row_top, int& col_left, int& row_bot, int& col_right) const { if (select_col > current_col) { col_left = current_col; col_right = select_col; |
