summaryrefslogtreecommitdiff
path: root/library/CustomGrid.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/CustomGrid.h')
-rw-r--r--library/CustomGrid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/CustomGrid.h b/library/CustomGrid.h
index d5db71a1..2b78a6c3 100644
--- a/library/CustomGrid.h
+++ b/library/CustomGrid.h
@@ -83,8 +83,8 @@ protected:
private:
virtual void setGridDataTable(const FreeFileSync::GridView* gridDataView) = 0;
-//this method is called when grid view changes: useful for parallel updating of multiple grids
- virtual void DoPrepareDC(wxDC& dc);
+ //this method is called when grid view changes: useful for parallel updating of multiple grids
+ void OnPaintGrid(wxEvent& event);
virtual void alignOtherGrids(CustomGrid* gridLeft, CustomGrid* gridMiddle, CustomGrid* gridRight) = 0;
bgstack15