summaryrefslogtreecommitdiff
path: root/ui/SmallDialogs.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/SmallDialogs.h')
-rw-r--r--ui/SmallDialogs.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/ui/SmallDialogs.h b/ui/SmallDialogs.h
index c6495c83..127947f6 100644
--- a/ui/SmallDialogs.h
+++ b/ui/SmallDialogs.h
@@ -86,18 +86,18 @@ private:
class SyncStatus : public SyncStatusDlgGenerated
{
public:
- SyncStatus(StatusUpdater* updater, wxWindow* parentWindow = 0);
+ SyncStatus(StatusUpdater* updater, wxWindow* parentWindow = NULL);
~SyncStatus();
enum SyncStatusID
{
- statusAborted,
- statusCompletedWithSuccess,
- statusCompletedWithErrors,
- statusPause,
- statusScanning,
- statusComparing,
- statusSynchronizing
+ ABORTED,
+ FINISHED_WITH_SUCCESS,
+ FINISHED_WITH_ERROR,
+ PAUSE,
+ SCANNING,
+ COMPARING,
+ SYNCHRONIZING
};
void resetGauge(int totalObjectsToProcess, double totalDataToProcess);
bgstack15