summaryrefslogtreecommitdiff
path: root/ui/batch_status_handler.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/batch_status_handler.h
parent5.0 (diff)
downloadFreeFileSync-01eb8253196672c969a39587e90b49321a182428.tar.gz
FreeFileSync-01eb8253196672c969a39587e90b49321a182428.tar.bz2
FreeFileSync-01eb8253196672c969a39587e90b49321a182428.zip
5.1
Diffstat (limited to 'ui/batch_status_handler.h')
-rw-r--r--ui/batch_status_handler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/batch_status_handler.h b/ui/batch_status_handler.h
index d5a18322..0657e881 100644
--- a/ui/batch_status_handler.h
+++ b/ui/batch_status_handler.h
@@ -7,9 +7,9 @@
#ifndef BATCHSTATUSHANDLER_H_INCLUDED
#define BATCHSTATUSHANDLER_H_INCLUDED
+#include <zen/error_log.h>
#include "../lib/status_handler.h"
#include "../lib/process_xml.h"
-#include "../lib/error_log.h"
#include "progress_indicator.h"
#include "switch_to_gui.h"
@@ -52,7 +52,7 @@ private:
bool showFinalResults;
bool switchToGuiRequested;
xmlAccess::OnError handleError_;
- zen::ErrorLogging errorLog; //list of non-resolved errors and warnings
+ zen::ErrorLog errorLog; //list of non-resolved errors and warnings
Process currentProcess;
int& returnValue;
bgstack15