EXTENDS -> SUPPLEMENTS
authorKlaus Kaempf <kkaempf@suse.de>
Thu, 16 Feb 2006 17:53:29 +0000 (17:53 +0000)
committerKlaus Kaempf <kkaempf@suse.de>
Thu, 16 Feb 2006 17:53:29 +0000 (17:53 +0000)
zypp/Dep.cc
zypp/Dep.h
zypp/pool/PoolImpl.cc

index 9d1cecd..01e4eb1 100644 (file)
@@ -39,7 +39,7 @@ namespace zypp
           _table["suggests"]    = Dep::SUGGESTS_e;
           _table["freshens"]    = Dep::FRESHENS_e;
           _table["enhances"]    = Dep::ENHANCES_e;
-          _table["extends"]    = Dep::EXTENDS_e;
+          _table["supplements"]        = Dep::SUPPLEMENTS_e;
         }
 
       std::map<std::string,Dep::for_use_in_switch>::const_iterator it
@@ -63,7 +63,7 @@ namespace zypp
   const Dep Dep::SUGGESTS   ( Dep::SUGGESTS_e );
   const Dep Dep::FRESHENS   ( Dep::FRESHENS_e );
   const Dep Dep::ENHANCES   ( Dep::ENHANCES_e );
-  const Dep Dep::EXTENDS    ( Dep::EXTENDS_e );
+  const Dep Dep::SUPPLEMENTS( Dep::SUPPLEMENTS_e );
 
   ///////////////////////////////////////////////////////////////////
   //
@@ -94,7 +94,7 @@ namespace zypp
         _table[SUGGESTS_e]    = "suggests";
         _table[FRESHENS_e]    = "freshens";
         _table[ENHANCES_e]    = "enhances";
-        _table[EXTENDS_e]     = "extends";
+        _table[SUPPLEMENTS_e] = "supplements";
       }
     return _table[_type];
   }
index 7f2393d..5982a1e 100644 (file)
@@ -48,7 +48,7 @@ namespace zypp
     static const Dep SUGGESTS;
     static const Dep FRESHENS;
     static const Dep ENHANCES;
-    static const Dep EXTENDS;
+    static const Dep SUPPLEMENTS;
     //@}
 
     /** Enumarators provided \b only for use \ref inSwitch statement.
@@ -64,7 +64,7 @@ namespace zypp
       SUGGESTS_e,
       FRESHENS_e,
       ENHANCES_e,
-      EXTENDS_e,
+      SUPPLEMENTS_e,
     };
 
     /** Ctor from string.
index 67b97d1..cbfac81 100644 (file)
@@ -116,7 +116,7 @@ XXX << "const item container for " << tag_r << " contains " << it->second.size()
       storeInsert( _store, item_r, Dep::CONFLICTS );
       storeInsert( _store, item_r, Dep::OBSOLETES );
       storeInsert( _store, item_r, Dep::FRESHENS );
-      storeInsert( _store, item_r, Dep::EXTENDS );
+      storeInsert( _store, item_r, Dep::SUPPLEMENTS );
     }
 
     static void
@@ -141,7 +141,7 @@ XXX << "const item container for " << tag_r << " contains " << it->second.size()
       storeDelete( _store, item_r, Dep::CONFLICTS );
       storeDelete( _store, item_r, Dep::OBSOLETES );
       storeDelete( _store, item_r, Dep::FRESHENS );
-      storeDelete( _store, item_r, Dep::EXTENDS );
+      storeDelete( _store, item_r, Dep::SUPPLEMENTS );
     }
 
       const CapHash::CapItemStoreT & CapHash::capItemStore ( Dep cap_r ) const