- If a package is deselected by user, apply this soft lock to all
authorMichael Andres <ma@suse.de>
Thu, 20 Sep 2007 09:20:26 +0000 (09:20 +0000)
committerMichael Andres <ma@suse.de>
Thu, 20 Sep 2007 09:20:26 +0000 (09:20 +0000)
  available versions of this package.

VERSION.cmake
package/libzypp.changes
zypp/ui/SelectableImpl.cc

index ddd0c65..82a383e 100644 (file)
@@ -47,4 +47,4 @@
 SET(LIBZYPP_MAJOR "3")
 SET(LIBZYPP_MINOR "24")
 SET(LIBZYPP_COMPATMINOR "24")
-SET(LIBZYPP_PATCH "3")
+SET(LIBZYPP_PATCH "4")
index 20872f4..423d4d1 100644 (file)
@@ -1,10 +1,18 @@
 -------------------------------------------------------------------
+Thu Sep 20 11:00:04 CEST 2007 - ma@suse.de
+
+- If a package is deselected by user, apply this soft lock to all
+  available versions of this package.
+- version 3.24.4
+- revision 7316
+
+-------------------------------------------------------------------
 Wed Sep 19 17:45:12 CEST 2007 - schubi@suse.de
 
 - Update: Do not set an item to installation if there has been already set
   one for installation which has the same NVA. Bug  326286
 - version 3.24.3
-- r 7311 
+- r 7311
 
 -------------------------------------------------------------------
 Wed Sep 19 14:19:49 CEST 2007 - ma@suse.de
index 3c4c52f..fd0977f 100644 (file)
@@ -65,8 +65,7 @@ namespace zypp
         for ( availableItem_const_iterator it = _impl.availableBegin();
               it != _impl.availableEnd(); ++it )
           {
-            if ( (*it).status().transacts() )
-              (*it).status().setTransact( false, ResStatus::USER );
+            (*it).status().setTransact( false, ResStatus::USER );
           }
       }
       void unlockCandidates() const