summaryrefslogtreecommitdiff
path: root/ui/gui_status_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gui_status_handler.h')
-rw-r--r--ui/gui_status_handler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/gui_status_handler.h b/ui/gui_status_handler.h
index 1977e265..4e289648 100644
--- a/ui/gui_status_handler.h
+++ b/ui/gui_status_handler.h
@@ -7,10 +7,10 @@
#ifndef GUISTATUSHANDLER_H_INCLUDED
#define GUISTATUSHANDLER_H_INCLUDED
-#include "../lib/status_handler.h"
#include <wx/event.h>
-#include "../lib/error_log.h"
+#include <zen/error_log.h>
#include "progress_indicator.h"
+#include "../lib/status_handler.h"
#include "../lib/process_xml.h"
#include "main_dlg.h"
@@ -76,7 +76,7 @@ private:
MainDialog* parentDlg_;
SyncStatus syncStatusFrame; //the window managed by SyncStatus has longer lifetime than this handler!
xmlAccess::OnGuiError handleError_;
- zen::ErrorLogging errorLog;
+ zen::ErrorLog errorLog;
};
bgstack15