summaryrefslogtreecommitdiff
path: root/library/custom_grid.h
diff options
context:
space:
mode:
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