diff options
author | Michael Vogt <mvo@debian.org> | 2013-10-14 07:52:21 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-10-14 07:52:21 +0200 |
commit | a22fdebf63a42026e4350ebd069512c797bc2a5b (patch) | |
tree | dcffe6ff5850eb1e22fb392d012e8f2acbad027a /apt-pkg/iprogress.h | |
parent | f9935b1c33203b9e47ca0ff5cb441c7963b19fbc (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.h | 13 |
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, |