summaryrefslogtreecommitdiff
path: root/ui/gui_status_handler.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
commit0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch)
tree69537ceb9787bb25ac363cc4e6cdaf0804d78363 /ui/gui_status_handler.h
parent5.12 (diff)
downloadFreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip
5.13
Diffstat (limited to 'ui/gui_status_handler.h')
-rw-r--r--ui/gui_status_handler.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/gui_status_handler.h b/ui/gui_status_handler.h
index fb0dbf51..312206b6 100644
--- a/ui/gui_status_handler.h
+++ b/ui/gui_status_handler.h
@@ -15,8 +15,6 @@
#include "../lib/process_xml.h"
#include "main_dlg.h"
-class SyncStatus;
-class wxCommandEvent;
//Exception class used to abort the "compare" and "sync" process
class GuiAbortProcess {};
@@ -69,7 +67,7 @@ private:
virtual void abortThisProcess(); //throw GuiAbortProcess
MainDialog* parentDlg_;
- SyncStatus syncStatusFrame; //the window managed by SyncStatus has longer lifetime than this handler!
+ SyncProgressDialog syncStatusFrame; //the window managed by SyncStatus has longer lifetime than this handler!
const size_t lastSyncsLogFileSizeMax_;
xmlAccess::OnGuiError handleError_;
zen::ErrorLog errorLog;
bgstack15