diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-17 13:21:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-17 13:21:59 +0300 |
commit | df994f808e69d567fddc742656a1df86c15bf576 (patch) | |
tree | 86bc2841a3d3a4f167a3238a4e0a3c366e038550 /src/gui/widgets/guitable.h | |
parent | 7c2c9f4478aa41a850b01480a8278b325f5b0f95 (diff) | |
download | ManaVerse-df994f808e69d567fddc742656a1df86c15bf576.tar.gz ManaVerse-df994f808e69d567fddc742656a1df86c15bf576.tar.bz2 ManaVerse-df994f808e69d567fddc742656a1df86c15bf576.tar.xz ManaVerse-df994f808e69d567fddc742656a1df86c15bf576.zip |
improve tablemodel.
Diffstat (limited to 'src/gui/widgets/guitable.h')
-rw-r--r-- | src/gui/widgets/guitable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/guitable.h b/src/gui/widgets/guitable.h index b5c8883c3..2296df87b 100644 --- a/src/gui/widgets/guitable.h +++ b/src/gui/widgets/guitable.h @@ -151,7 +151,7 @@ public: void mouseDragged(gcn::MouseEvent& mouseEvent) override; // Constraints inherited from TableModelListener - void modelUpdated(bool) override; + void modelUpdated(const bool completed) override; void requestFocus(); @@ -163,7 +163,7 @@ protected: int getRowHeight() const A_WARN_UNUSED; - int getColumnWidth(int i) const A_WARN_UNUSED; + int getColumnWidth(const int i) const A_WARN_UNUSED; private: int getRowForY(int y) const A_WARN_UNUSED; // -1 on error |