summaryrefslogtreecommitdiff
path: root/library/custom_grid.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:17 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:17 +0200
commitb654dbfa5f3e4a4d02f72023f7c5895635aa6396 (patch)
tree8c1dfe7f638c0fc7afc1d08bc2fc0fd0f8646e5e /library/custom_grid.h
parent3.17 (diff)
downloadFreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.gz
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.bz2
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.zip
3.18
Diffstat (limited to 'library/custom_grid.h')
-rw-r--r--library/custom_grid.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/custom_grid.h b/library/custom_grid.h
index 1301486f..8b70c417 100644
--- a/library/custom_grid.h
+++ b/library/custom_grid.h
@@ -82,7 +82,7 @@ public:
};
//notify wxGrid that underlying table size has changed
- void updateGridSizes();
+ virtual void updateGridSizes();
typedef std::pair<SortColumn, SortDirection> SortMarker;
void setSortMarker(SortMarker marker);
@@ -164,6 +164,8 @@ public:
void enableFileIcons(const bool value);
+ virtual void updateGridSizes();
+
protected:
template <zen::SelectedSide side>
void setTooltip(const wxMouseEvent& event);
bgstack15