summaryrefslogtreecommitdiff
path: root/library/CustomGrid.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:01:29 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:01:29 +0200
commit9a2a524f1e311853d08050be2dcdddc09ac7759a (patch)
treed8e4a24169fce88c2d89931d58514889a0bcb0ea /library/CustomGrid.h
parent2.3 (diff)
downloadFreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.tar.gz
FreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.tar.bz2
FreeFileSync-9a2a524f1e311853d08050be2dcdddc09ac7759a.zip
3.0
Diffstat (limited to 'library/CustomGrid.h')
-rw-r--r--library/CustomGrid.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/library/CustomGrid.h b/library/CustomGrid.h
index 08ec5f55..59bc97c0 100644
--- a/library/CustomGrid.h
+++ b/library/CustomGrid.h
@@ -23,11 +23,9 @@ class CustomGridRight;
namespace FreeFileSync
{
- class GridView;
+class GridView;
- const wxBitmap& getSyncOpImage(const CompareFilesResult cmpResult,
- const bool selectedForSynchronization,
- const SyncDirection syncDir);
+const wxBitmap& getSyncOpImage(SyncOperation syncOp);
}
//##################################################################################
@@ -299,9 +297,9 @@ class FFSCheckRowsEvent : public wxCommandEvent
{
public:
FFSCheckRowsEvent(const int from, const int to) :
- wxCommandEvent(FFS_CHECK_ROWS_EVENT),
- rowFrom(from),
- rowTo(to) {}
+ wxCommandEvent(FFS_CHECK_ROWS_EVENT),
+ rowFrom(from),
+ rowTo(to) {}
virtual wxEvent* Clone() const
{
@@ -326,10 +324,10 @@ class FFSSyncDirectionEvent : public wxCommandEvent
{
public:
FFSSyncDirectionEvent(const int from, const int to, const FreeFileSync::SyncDirection dir) :
- wxCommandEvent(FFS_SYNC_DIRECTION_EVENT),
- rowFrom(from),
- rowTo(to),
- direction(dir) {}
+ wxCommandEvent(FFS_SYNC_DIRECTION_EVENT),
+ rowFrom(from),
+ rowTo(to),
+ direction(dir) {}
virtual wxEvent* Clone() const
{
bgstack15