diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:35 +0300 |
commit | 3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9 (patch) | |
tree | 2053748aba4fd1e01020effe9322757426354d28 /src/gui/widgets/guitable.cpp | |
parent | 2577a25f8a4acf587526809fda2ded95875e1222 (diff) | |
download | plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.gz plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.bz2 plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.xz plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.zip |
Add missing const in gui directory.
Diffstat (limited to 'src/gui/widgets/guitable.cpp')
-rw-r--r-- | src/gui/widgets/guitable.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/guitable.cpp b/src/gui/widgets/guitable.cpp index c41d4886c..c6acc33da 100644 --- a/src/gui/widgets/guitable.cpp +++ b/src/gui/widgets/guitable.cpp @@ -220,7 +220,7 @@ void GuiTable::installActionListeners() } // -- widget ops -void GuiTable::draw(Graphics* graphics) +void GuiTable::draw(Graphics *const graphics) { if (!getRowHeight()) return; @@ -338,7 +338,7 @@ void GuiTable::draw(Graphics* graphics) BLOCK_END("GuiTable::draw") } -void GuiTable::safeDraw(Graphics* graphics) +void GuiTable::safeDraw(Graphics *const graphics) { if (!getRowHeight()) return; @@ -456,13 +456,13 @@ void GuiTable::safeDraw(Graphics* graphics) BLOCK_END("GuiTable::draw") } -void GuiTable::moveToTop(Widget *widget) +void GuiTable::moveToTop(Widget *const widget) { Widget::moveToTop(widget); mTopWidget = widget; } -void GuiTable::moveToBottom(Widget *widget) +void GuiTable::moveToBottom(Widget *const widget) { Widget::moveToBottom(widget); if (widget == mTopWidget) @@ -608,7 +608,7 @@ Widget *GuiTable::getWidgetAt(int x, int y) return nullptr; } -int GuiTable::getRowForY(int y) const +int GuiTable::getRowForY(const int y) const { int row = -1; @@ -622,7 +622,7 @@ int GuiTable::getRowForY(int y) const return row; } -int GuiTable::getColumnForX(int x) const +int GuiTable::getColumnForX(const int x) const { int column; int delta = 0; |