summaryrefslogtreecommitdiff
path: root/ui/gui_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/gui_status_handler.h
parent5.0 (diff)
downloadFreeFileSync-01eb8253196672c969a39587e90b49321a182428.tar.gz
FreeFileSync-01eb8253196672c969a39587e90b49321a182428.tar.bz2
FreeFileSync-01eb8253196672c969a39587e90b49321a182428.zip
5.1
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