summaryrefslogtreecommitdiff
path: root/src/gui/models
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-12-23 01:47:57 +0300
committerAndrei Karas <akaras@inbox.ru>2015-12-23 01:47:57 +0300
commitb226f23946987a649fb50bc6d9df2dd8afa7ade1 (patch)
tree25dc0c5e10d9db78d1eb463b3c98070ccc89a8bb /src/gui/models
parent1a9ffd99f2b199501bf0f23e368bcd91d05fd277 (diff)
downloadplus-b226f23946987a649fb50bc6d9df2dd8afa7ade1.tar.gz
plus-b226f23946987a649fb50bc6d9df2dd8afa7ade1.tar.bz2
plus-b226f23946987a649fb50bc6d9df2dd8afa7ade1.tar.xz
plus-b226f23946987a649fb50bc6d9df2dd8afa7ade1.zip
Add const attribute to gui classes.
Diffstat (limited to 'src/gui/models')
-rw-r--r--src/gui/models/playertablemodel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/models/playertablemodel.h b/src/gui/models/playertablemodel.h
index 6525a38b3..e71faf1ad 100644
--- a/src/gui/models/playertablemodel.h
+++ b/src/gui/models/playertablemodel.h
@@ -43,11 +43,11 @@ class PlayerTableModel final : public Widget2,
int getRows() const override final;
- int getColumns() const override final;
+ int getColumns() const override final A_CONST;
- int getRowHeight() const override final;
+ int getRowHeight() const override final A_CONST;
- int getColumnWidth(const int index) const override final;
+ int getColumnWidth(const int index) const override final A_CONST;
void playerRelationsUpdated();