summaryrefslogtreecommitdiff
path: root/ui/progress_indicator.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:22:55 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:22:55 +0200
commitc4182431ac7d9d306fdd2267e082fa4cec6fec2c (patch)
tree865cca543c062b7af2586f85cee19f9af4e7614d /ui/progress_indicator.h
parent5.11 (diff)
downloadFreeFileSync-c4182431ac7d9d306fdd2267e082fa4cec6fec2c.tar.gz
FreeFileSync-c4182431ac7d9d306fdd2267e082fa4cec6fec2c.tar.bz2
FreeFileSync-c4182431ac7d9d306fdd2267e082fa4cec6fec2c.zip
5.12
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