summaryrefslogtreecommitdiff
path: root/library/CustomGrid.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:14 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:55:14 +0200
commit222024f07e505617aec93dc4837be2be27d18856 (patch)
treec40f400baa6cf1d047205359f80c2b8f74a2b507 /library/CustomGrid.h
parent1.12 (diff)
downloadFreeFileSync-222024f07e505617aec93dc4837be2be27d18856.tar.gz
FreeFileSync-222024f07e505617aec93dc4837be2be27d18856.tar.bz2
FreeFileSync-222024f07e505617aec93dc4837be2be27d18856.zip
1.13
Diffstat (limited to 'library/CustomGrid.h')
-rw-r--r--library/CustomGrid.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/library/CustomGrid.h b/library/CustomGrid.h
index 8f22275b..3547b090 100644
--- a/library/CustomGrid.h
+++ b/library/CustomGrid.h
@@ -5,7 +5,8 @@
#include <wx/grid.h>
#include "../FreeFileSync.h"
-using namespace std;
+using namespace FreeFileSync;
+
class CustomGridTableBase;
@@ -35,7 +36,7 @@ public:
//this method is called when grid view changes: useful for parallel updating of multiple grids
void DoPrepareDC(wxDC& dc);
- void setScrollFriends(CustomGrid* grid1, CustomGrid* grid2, CustomGrid* grid3);
+ void setScrollFriends(CustomGrid* gridLeft, CustomGrid* gridRight, CustomGrid* gridMiddle);
void setGridDataTable(GridView* gridRefUI, FileCompareResult* gridData);
@@ -51,9 +52,9 @@ private:
bool scrollbarsEnabled;
- CustomGrid* m_grid1;
- CustomGrid* m_grid2;
- CustomGrid* m_grid3;
+ CustomGrid* m_gridLeft;
+ CustomGrid* m_gridRight;
+ CustomGrid* m_gridMiddle;
CustomGridTableBase* gridDataTable;
bgstack15