diff options
Diffstat (limited to 'src/gui/widgets/guitable.h')
-rw-r--r-- | src/gui/widgets/guitable.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/widgets/guitable.h b/src/gui/widgets/guitable.h index 1743f06c6..51905b441 100644 --- a/src/gui/widgets/guitable.h +++ b/src/gui/widgets/guitable.h @@ -61,11 +61,6 @@ class GuiTable final : public Widget, ~GuiTable(); /** - * Retrieves the active table model - */ - const TableModel *getModel() const A_WARN_UNUSED; - - /** * Sets the table model * * Note that actions issued by widgets returned from the model will @@ -75,6 +70,11 @@ class GuiTable final : public Widget, */ void setModel(TableModel *const m); + /** + * Retrieves the active table model + */ + const TableModel *getModel() const A_WARN_UNUSED RETURNS_NONNULL; + void setSelected(const int row, const int column); int getSelectedRow() const A_WARN_UNUSED; |