summaryrefslogtreecommitdiff
path: root/synchronization.h
diff options
context:
space:
mode:
Diffstat (limited to 'synchronization.h')
-rw-r--r--synchronization.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/synchronization.h b/synchronization.h
index 62a55d99..0f1931cb 100644
--- a/synchronization.h
+++ b/synchronization.h
@@ -3,7 +3,7 @@
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
// **************************************************************************
-//
+
#ifndef SYNCHRONIZATION_H_INCLUDED
#define SYNCHRONIZATION_H_INCLUDED
@@ -30,13 +30,13 @@ public:
int getDelete() const;
template <SelectedSide side> int getDelete() const;
- int getConflict() const;
+ int getConflict() const { return conflict; }
typedef std::vector<std::pair<Zstring, wxString> > ConflictTexts; // Pair(filename/conflict text)
- const ConflictTexts& getFirstConflicts() const; //get first few sync conflicts
+ const ConflictTexts& getFirstConflicts() const { return firstConflicts; }
- zen::UInt64 getDataToProcess() const;
- size_t getRowCount() const;
+ zen::UInt64 getDataToProcess() const { return dataToProcess; }
+ size_t getRowCount() const { return rowsTotal; }
private:
void init();
bgstack15