summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:05:53 +0200
commit618dfb51d93898632830f1b87443d3f748780871 (patch)
treebac520a2e261154f8d35b0cb8aa345f5ab373811 /synchronization.h
parent3.4 (diff)
downloadFreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.gz
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.tar.bz2
FreeFileSync-618dfb51d93898632830f1b87443d3f748780871.zip
3.5
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/synchronization.h b/synchronization.h
index a030590c..79c91fe6 100644
--- a/synchronization.h
+++ b/synchronization.h
@@ -31,7 +31,7 @@ public:
const ConflictTexts& getFirstConflicts() const; //get first few sync conflicts
wxULongLong getDataToProcess() const;
- int getRowCount() const;
+ size_t getRowCount() const;
private:
void init();
@@ -47,7 +47,7 @@ private:
int conflict;
ConflictTexts firstConflicts; //save the first few conflict texts to display as a warning message
wxULongLong dataToProcess;
- int rowsTotal;
+ size_t rowsTotal;
};
bool synchronizationNeeded(const FolderComparison& folderCmp);
bgstack15