diff options
author | Michael Vogt <mvo@debian.org> | 2013-12-22 14:38:39 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-12-22 14:49:52 +0100 |
commit | 4754718a4461ebff89f5b49c385a007b4197bcff (patch) | |
tree | afa47d46939f5380bf3b1490f4dcb4d44073ffb3 /apt-pkg/install-progress.h | |
parent | 9b7c10509c534b7d413b5102231cb0ca387f1c65 (diff) |
first proof-of-concept for a fix for #731738
Diffstat (limited to 'apt-pkg/install-progress.h')
-rw-r--r-- | apt-pkg/install-progress.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/install-progress.h b/apt-pkg/install-progress.h index 4b7590983..010be82fd 100644 --- a/apt-pkg/install-progress.h +++ b/apt-pkg/install-progress.h @@ -28,7 +28,7 @@ namespace Progress { virtual ~PackageManager() {}; /* Global Start/Stop */ - virtual void Start() {}; + virtual void Start(int child_pty=-1) {}; virtual void Stop() {}; /* When dpkg is invoked (may happen multiple times for each @@ -125,7 +125,7 @@ namespace Progress { public: PackageManagerFancy(); ~PackageManagerFancy(); - virtual void Start(); + virtual void Start(int child_pty=-1); virtual void Stop(); virtual bool StatusChanged(std::string PackageName, unsigned int StepsDone, |