summaryrefslogtreecommitdiff
path: root/ui/batch_status_handler.h
diff options
context:
space:
mode:
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