diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-01-26 11:57:29 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-01-26 11:57:29 +0100 |
commit | a29b2c0b9c4e7b1c36433c9c6dd5d24697f9c4b6 (patch) | |
tree | ffc56c0f8c0dd1a8336aecf82a57acad04d9519a /apt-pkg/packagemanager.h | |
parent | 7ec263803c488d90cc72ce46d04d9f5923aa093d (diff) |
Change history branch so that it does not break the
apt ABI for the pkgPackageManager interface
(can be reverted on the next ABI break)
Diffstat (limited to 'apt-pkg/packagemanager.h')
-rw-r--r-- | apt-pkg/packagemanager.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apt-pkg/packagemanager.h b/apt-pkg/packagemanager.h index af1476b7a..44f5d5ef7 100644 --- a/apt-pkg/packagemanager.h +++ b/apt-pkg/packagemanager.h @@ -49,7 +49,11 @@ class pkgPackageManager : protected pkgCache::Namespace bool Debug; bool DepAdd(pkgOrderList &Order,PkgIterator P,int Depth = 0); - void ImmediateAdd(PkgIterator P, bool UseInstallVer, unsigned const int &Depth = 0); + // binary-compat change, fix on next abi break + void ImmediateAdd(PkgIterator P, bool UseInstallVer) { + ImmediateAdd(P, UseInstallVer, 0); + } + void ImmediateAdd(PkgIterator P, bool UseInstallVer, unsigned const int &Depth); virtual OrderResult OrderInstall(); bool CheckRConflicts(PkgIterator Pkg,DepIterator Dep,const char *Ver); bool CreateOrderList(); |