summaryrefslogtreecommitdiff
path: root/ui/batch_status_handler.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:17 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:12:17 +0200
commitb654dbfa5f3e4a4d02f72023f7c5895635aa6396 (patch)
tree8c1dfe7f638c0fc7afc1d08bc2fc0fd0f8646e5e /ui/batch_status_handler.cpp
parent3.17 (diff)
downloadFreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.gz
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.bz2
FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.zip
3.18
Diffstat (limited to 'ui/batch_status_handler.cpp')
-rw-r--r--ui/batch_status_handler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/batch_status_handler.cpp b/ui/batch_status_handler.cpp
index b9eff9fa..4b4740f9 100644
--- a/ui/batch_status_handler.cpp
+++ b/ui/batch_status_handler.cpp
@@ -182,7 +182,7 @@ BatchStatusHandler::BatchStatusHandler(bool runSilent,
handleError_(handleError),
currentProcess(StatusHandler::PROCESS_NONE),
returnValue(returnVal),
- syncStatusFrame(*this, NULL, runSilent, jobName)
+ syncStatusFrame(*this, NULL, SyncStatus::SCANNING, runSilent, jobName)
{
if (logfileDirectory && logFileMaxCount > 0)
{
@@ -195,7 +195,7 @@ BatchStatusHandler::BatchStatusHandler(bool runSilent,
{
wxMessageBox(error.msg(), _("Error"), wxOK | wxICON_ERROR);
returnValue = -7;
- throw zen::AbortThisProcess();
+ throw BatchAbortProcess();
}
}
@@ -415,5 +415,5 @@ void BatchStatusHandler::forceUiRefresh()
void BatchStatusHandler::abortThisProcess()
{
requestAbortion();
- throw zen::AbortThisProcess(); //abort can be triggered by syncStatusFrame
+ throw BatchAbortProcess(); //abort can be triggered by syncStatusFrame
}
bgstack15