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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/progress_indicator.h b/ui/progress_indicator.h
index 4bd9861b..bb5a287c 100644
--- a/ui/progress_indicator.h
+++ b/ui/progress_indicator.h
@@ -40,7 +40,8 @@ class SyncStatus
public:
SyncStatus(StatusHandler& updater,
wxTopLevelWindow* parentWindow, //may be NULL
- bool startSilent);
+ bool startSilent,
+ const wxString& jobName);
~SyncStatus();
wxWindow* getAsWindow(); //convenience! don't abuse!
bgstack15