summaryrefslogtreecommitdiff
path: root/apt-pkg/iprogress.h
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-10-14 07:52:21 +0200
committerMichael Vogt <mvo@debian.org>2013-10-14 07:52:21 +0200
commita22fdebf63a42026e4350ebd069512c797bc2a5b (patch)
treedcffe6ff5850eb1e22fb392d012e8f2acbad027a /apt-pkg/iprogress.h
parentf9935b1c33203b9e47ca0ff5cb441c7963b19fbc (diff)
rename APT::Progress::Packagemanager Started->Start, Finished->Stop to match pkgAcquireStatus
Diffstat (limited to 'apt-pkg/iprogress.h')
-rw-r--r--apt-pkg/iprogress.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/apt-pkg/iprogress.h b/apt-pkg/iprogress.h
index 5584b3940..ccf154279 100644
--- a/apt-pkg/iprogress.h
+++ b/apt-pkg/iprogress.h
@@ -24,8 +24,8 @@ namespace Progress {
: percentage(0.0), last_reported_progress(0) {};
virtual ~PackageManager() {};
- virtual void Started() {};
- virtual void Finished() {};
+ virtual void Start() {};
+ virtual void Stop() {};
virtual pid_t fork() {return fork(); };
@@ -59,9 +59,8 @@ namespace Progress {
public:
PackageManagerProgressFd(int progress_fd);
- // FIXME: rename to Start/Stop to match the pkgAcquireStatus
- virtual void Started();
- virtual void Finished();
+ virtual void Start();
+ virtual void Stop();
virtual bool StatusChanged(std::string PackageName,
unsigned int StepsDone,
@@ -86,8 +85,8 @@ namespace Progress {
public:
PackageManagerFancy();
- virtual void Started();
- virtual void Finished();
+ virtual void Start();
+ virtual void Stop();
virtual bool StatusChanged(std::string PackageName,
unsigned int StepsDone,
unsigned int TotalSteps,