diff options
Diffstat (limited to 'src/gui/widgets/table.h')
-rw-r--r-- | src/gui/widgets/table.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/table.h b/src/gui/widgets/table.h index 8d8577cef..f7473c535 100644 --- a/src/gui/widgets/table.h +++ b/src/gui/widgets/table.h @@ -94,7 +94,7 @@ public: void setWrappingEnabled(bool wrappingEnabled) { mWrappingEnabled = wrappingEnabled; } - gcn::Rectangle getChildrenArea() const; + gcn::Rectangle getChildrenArea(); /** * Toggle whether to use linewise selection mode, in which the table selects @@ -112,7 +112,7 @@ public: // Inherited from Widget virtual void draw(gcn::Graphics* graphics); - virtual gcn::Widget *getWidgetAt(int x, int y) const; + virtual gcn::Widget *getWidgetAt(int x, int y); virtual void moveToTop(gcn::Widget *child); |