]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/orderlist.h
review apt-secure(8) manpage
[apt.git] / apt-pkg / orderlist.h
index 6d9f45eed16a3329298324b0cef531f9588904e0..80876e3f9499d46249e8183e8a3ef5ec9c0acf63 100644 (file)
@@ -24,7 +24,7 @@
 class pkgDepCache;
 class pkgOrderList : protected pkgCache::Namespace
 {
-   void *d;
+   void * const d;
    protected:
 
    pkgDepCache &Cache;   
@@ -69,9 +69,8 @@ class pkgOrderList : protected pkgCache::Namespace
    bool DoRun();
    
    // For pre sorting
-   static pkgOrderList *Me;
-   static int OrderCompareA(const void *a, const void *b) APT_PURE;
-   static int OrderCompareB(const void *a, const void *b) APT_PURE;
+   int OrderCompareA(Package *a, Package *b) APT_PURE;
+   int OrderCompareB(Package *a, Package *b) APT_PURE;
    int FileCmp(PkgIterator A,PkgIterator B) APT_PURE;
    
    public: