diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-02-10 23:23:23 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-02-10 23:23:23 +0000 |
commit | 1c5f7e5fc5c0377718d203e78d4af164ee3e60f8 (patch) | |
tree | 97b45288b59583303255933d0c1aa9cdcb6bc89d /apt-pkg/acquire.h | |
parent | e75f306ea9596c82e3b0c188e9b5203fc9d619da (diff) |
* PulseIntervall can be configured now to make frontends like synaptic hayppy. it's done in a way that does not break binary compatibility
Diffstat (limited to 'apt-pkg/acquire.h')
-rw-r--r-- | apt-pkg/acquire.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/acquire.h b/apt-pkg/acquire.h index 65c53a953..3e338b220 100644 --- a/apt-pkg/acquire.h +++ b/apt-pkg/acquire.h @@ -100,7 +100,8 @@ class pkgAcquire enum RunResult {Continue,Failed,Cancelled}; - RunResult Run(); + RunResult Run() { return Run(500000); }; // Binary compatibility + RunResult Run(int PulseIntervall); void Shutdown(); // Simple iteration mechanism |