diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-04-18 23:44:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-04-19 02:32:14 +0300 |
commit | 83d4185ef116b1813742399dbf40547a4c9f7216 (patch) | |
tree | 31d19acf8a47f703dd996b338e2429a9326213e0 /src/gui/widgets/table.cpp | |
parent | f08475dbeee9fd5490afff5e50fee727685ddd09 (diff) | |
download | plus-83d4185ef116b1813742399dbf40547a4c9f7216.tar.gz plus-83d4185ef116b1813742399dbf40547a4c9f7216.tar.bz2 plus-83d4185ef116b1813742399dbf40547a4c9f7216.tar.xz plus-83d4185ef116b1813742399dbf40547a4c9f7216.zip |
Unhide some virtual methods.
Diffstat (limited to 'src/gui/widgets/table.cpp')
-rw-r--r-- | src/gui/widgets/table.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/table.cpp b/src/gui/widgets/table.cpp index 81efa5d12..ab8b3a339 100644 --- a/src/gui/widgets/table.cpp +++ b/src/gui/widgets/table.cpp @@ -392,7 +392,7 @@ void GuiTable::moveToBottom(gcn::Widget *widget) mTopWidget = NULL; } -gcn::Rectangle GuiTable::getChildrenArea() const +gcn::Rectangle GuiTable::getChildrenArea() { return gcn::Rectangle(0, 0, getWidth(), getHeight()); } @@ -515,7 +515,7 @@ void GuiTable::modelUpdated(bool completed) } } -gcn::Widget *GuiTable::getWidgetAt(int x, int y) const +gcn::Widget *GuiTable::getWidgetAt(int x, int y) { int row = getRowForY(y); int column = getColumnForX(x); |