summaryrefslogtreecommitdiff
path: root/ui/progress_indicator.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:19:14 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:19:14 +0200
commit01eb8253196672c969a39587e90b49321a182428 (patch)
tree4a3b71d7913de519744466c9227fda6461c4f0b5 /ui/progress_indicator.h
parent5.0 (diff)
downloadFreeFileSync-01eb8253196672c969a39587e90b49321a182428.tar.gz
FreeFileSync-01eb8253196672c969a39587e90b49321a182428.tar.bz2
FreeFileSync-01eb8253196672c969a39587e90b49321a182428.zip
5.1
Diffstat (limited to 'ui/progress_indicator.h')
-rw-r--r--ui/progress_indicator.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/ui/progress_indicator.h b/ui/progress_indicator.h
index 3fa3f8f9..858f6ce9 100644
--- a/ui/progress_indicator.h
+++ b/ui/progress_indicator.h
@@ -7,16 +7,12 @@
#ifndef PROGRESSINDICATOR_H_INCLUDED
#define PROGRESSINDICATOR_H_INCLUDED
+#include <zen/error_log.h>
#include <zen/zstring.h>
#include <wx/toplevel.h>
#include "../lib/status_handler.h"
#include "main_dlg.h"
-namespace zen
-{
-class ErrorLogging;
-}
-
class CompareStatus
{
@@ -57,7 +53,7 @@ public:
};
SyncStatus(AbortCallback& abortCb,
- MainDialog* parentWindow, //may be NULL
+ MainDialog* parentWindow, //may be nullptr
SyncStatusID startStatus,
bool showProgress,
const wxString& jobName,
@@ -82,7 +78,7 @@ public:
//essential to call one of these two methods in StatusUpdater derived class destructor at the LATEST(!)
//to prevent access to callback to updater (e.g. request abort)
- void processHasFinished(SyncStatusID id, const zen::ErrorLogging& log);
+ void processHasFinished(SyncStatusID id, const zen::ErrorLog& log);
void closeWindowDirectly(); //don't wait for user
private:
bgstack15