summaryrefslogtreecommitdiff
path: root/ui/gui_status_handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gui_status_handler.cpp')
-rw-r--r--ui/gui_status_handler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/gui_status_handler.cpp b/ui/gui_status_handler.cpp
index 09c59b92..3319d07a 100644
--- a/ui/gui_status_handler.cpp
+++ b/ui/gui_status_handler.cpp
@@ -204,14 +204,14 @@ void CompareStatusHandler::OnAbortCompare(wxCommandEvent& event)
void CompareStatusHandler::abortThisProcess()
{
requestAbortion();
- throw zen::AbortThisProcess();
+ throw GuiAbortProcess();
}
//########################################################################################################
SyncStatusHandler::SyncStatusHandler(MainDialog* parentDlg, OnGuiError handleError, const wxString& jobName) :
parentDlg_(parentDlg),
- syncStatusFrame(*this, parentDlg, false, jobName),
+ syncStatusFrame(*this, parentDlg, SyncStatus::SYNCHRONIZING, false, jobName),
handleError_(handleError)
{
}
@@ -361,5 +361,5 @@ void SyncStatusHandler::forceUiRefresh()
void SyncStatusHandler::abortThisProcess()
{
requestAbortion();
- throw zen::AbortThisProcess(); //abort can be triggered by syncStatusFrame
+ throw GuiAbortProcess(); //abort can be triggered by syncStatusFrame
}
bgstack15