summaryrefslogtreecommitdiff
path: root/ui/progress_indicator.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/progress_indicator.h')
-rw-r--r--ui/progress_indicator.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/progress_indicator.h b/ui/progress_indicator.h
index 9e139ae5..4bf0c048 100644
--- a/ui/progress_indicator.h
+++ b/ui/progress_indicator.h
@@ -11,6 +11,11 @@
#include <wx/toplevel.h>
#include "../library/status_handler.h"
+namespace ffs3
+{
+class ErrorLogging;
+}
+
class CompareStatus
{
@@ -67,7 +72,7 @@ public:
//essential to call one of these two methods in StatusUpdater derived class destructor at the LATEST(!)
//to prevent access to callback to updater (e.g. request abort)
- void processHasFinished(SyncStatusID id, const wxString& finalMessage);
+ void processHasFinished(SyncStatusID id, const ffs3::ErrorLogging& log);
void closeWindowDirectly(); //don't wait for user
private:
bgstack15