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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/progress_indicator.h b/ui/progress_indicator.h
index b3d7ff2f..e4995824 100644
--- a/ui/progress_indicator.h
+++ b/ui/progress_indicator.h
@@ -49,8 +49,8 @@ public:
void initNewPhase(); //call after "StatusHandler::initNewPhase"
- void reportCurrentBytes(zen::Int64 currentData); //throw (), required by graph!
- void updateProgress();
+ void notifyProgressChange(); //throw (), required by graph!
+ void updateGui();
std::wstring getExecWhenFinishedCommand() const; //final value (after possible user modification)
bgstack15