Hello community,

here is the log from the commit of package libyui-qt-pkg for openSUSE:Factory 
checked in at 2014-03-05 15:36:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libyui-qt-pkg (Old)
 and      /work/SRC/openSUSE:Factory/.libyui-qt-pkg.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libyui-qt-pkg"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libyui-qt-pkg/libyui-qt-pkg.changes      
2014-03-01 14:38:09.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libyui-qt-pkg.new/libyui-qt-pkg.changes 
2014-03-05 15:36:40.000000000 +0100
@@ -1,0 +2,6 @@
+Tue Mar  4 12:08:08 UTC 2014 - mvid...@suse.com
+
+- fix actions in the package context menu (bnc#866038)
+- 2.44.2
+
+-------------------------------------------------------------------

Old:
----
  libyui-qt-pkg-2.44.1.tar.bz2

New:
----
  libyui-qt-pkg-2.44.2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libyui-qt-pkg-doc.spec ++++++
--- /var/tmp/diff_new_pack.Mv8mvQ/_old  2014-03-05 15:36:41.000000000 +0100
+++ /var/tmp/diff_new_pack.Mv8mvQ/_new  2014-03-05 15:36:41.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           libyui-qt-pkg-doc
-Version:        2.44.1
+Version:        2.44.2
 Release:        0
 Source:         libyui-qt-pkg-%{version}.tar.bz2
 

++++++ libyui-qt-pkg.spec ++++++
--- /var/tmp/diff_new_pack.Mv8mvQ/_old  2014-03-05 15:36:41.000000000 +0100
+++ /var/tmp/diff_new_pack.Mv8mvQ/_new  2014-03-05 15:36:41.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           libyui-qt-pkg
-Version:        2.44.1
+Version:        2.44.2
 Release:        0
 Source:         libyui-qt-pkg-%{version}.tar.bz2
 

++++++ libyui-qt-pkg-2.44.1.tar.bz2 -> libyui-qt-pkg-2.44.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-pkg-2.44.1/ChangeLog 
new/libyui-qt-pkg-2.44.2/ChangeLog
--- old/libyui-qt-pkg-2.44.1/ChangeLog  2014-02-25 15:31:12.000000000 +0100
+++ new/libyui-qt-pkg-2.44.2/ChangeLog  2014-03-04 13:35:48.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Tue Mar  4 12:08:08 UTC 2014 - mvid...@suse.com
+
+- fix actions in the package context menu (bnc#866038)
+- 2.44.2
+
+-------------------------------------------------------------------
 Tue Feb 25 14:25:10 UTC 2014 - mvid...@suse.com
 
 - Ported to Qt5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-pkg-2.44.1/VERSION.cmake 
new/libyui-qt-pkg-2.44.2/VERSION.cmake
--- old/libyui-qt-pkg-2.44.1/VERSION.cmake      2014-02-25 15:31:12.000000000 
+0100
+++ new/libyui-qt-pkg-2.44.2/VERSION.cmake      2014-03-04 13:35:48.000000000 
+0100
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR "2" )
 SET( VERSION_MINOR "44" )
-SET( VERSION_PATCH "1" )
+SET( VERSION_PATCH "2" )
 SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}" )
 
 ##### This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-pkg-2.44.1/src/YQPackageSelectorBase.cc 
new/libyui-qt-pkg-2.44.2/src/YQPackageSelectorBase.cc
--- old/libyui-qt-pkg-2.44.1/src/YQPackageSelectorBase.cc       2014-02-21 
15:09:38.000000000 +0100
+++ new/libyui-qt-pkg-2.44.2/src/YQPackageSelectorBase.cc       2014-03-04 
13:35:48.000000000 +0100
@@ -96,8 +96,8 @@
     
//_actionResetIgnoredDependencyProblems->setMenuRole(QAction::TextHeuristicRole);
     Q_CHECK_PTR( _actionResetIgnoredDependencyProblems );
 
-    connect( _actionResetIgnoredDependencyProblems, SIGNAL( activated() ),
-            this,                                  SLOT  ( 
resetIgnoredDependencyProblems() ) );
+    connect( _actionResetIgnoredDependencyProblems, &QAction::triggered,
+             this,                                  
&YQPackageSelectorBase::resetIgnoredDependencyProblems );
 
     zyppPool().saveState<zypp::Package  >();
     zyppPool().saveState<zypp::Pattern  >();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-pkg-2.44.1/src/YQPkgList.cc 
new/libyui-qt-pkg-2.44.2/src/YQPkgList.cc
--- old/libyui-qt-pkg-2.44.1/src/YQPkgList.cc   2014-02-21 15:09:38.000000000 
+0100
+++ new/libyui-qt-pkg-2.44.2/src/YQPkgList.cc   2014-03-04 13:35:48.000000000 
+0100
@@ -543,11 +543,14 @@
                                                        QString::null,          
// key
                                                        true );                 
// enabled
 
-    connect( actionInstallSourceRpm,           SIGNAL( activated() ), this, 
SLOT( setInstallCurrentSourceRpm()     ) );
-    connect( actionDontInstallSourceRpm,       SIGNAL( activated() ), this, 
SLOT( setDontInstallCurrentSourceRpm() ) );
-
-    connect( actionInstallListSourceRpms,      SIGNAL( activated() ), this, 
SLOT( setInstallListSourceRpms()       ) );
-    connect( actionDontInstallListSourceRpms,  SIGNAL( activated() ), this, 
SLOT( setDontInstallListSourceRpms()   ) );
+    connect( actionInstallSourceRpm,          &QAction::triggered,
+             this,                            static_cast<void 
(YQPkgList::*)()>(&YQPkgList::setInstallCurrentSourceRpm) );
+    connect( actionDontInstallSourceRpm,      &QAction::triggered,
+             this,                            
&YQPkgList::setDontInstallCurrentSourceRpm );
+    connect( actionInstallListSourceRpms,     &QAction::triggered,
+             this,                            static_cast<void 
(YQPkgList::*)()>(&YQPkgList::setInstallListSourceRpms) );
+    connect( actionDontInstallListSourceRpms, &QAction::triggered,
+             this,                            
&YQPkgList::setDontInstallListSourceRpms );
 }
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-pkg-2.44.1/src/YQPkgObjList.cc 
new/libyui-qt-pkg-2.44.2/src/YQPkgObjList.cc
--- old/libyui-qt-pkg-2.44.1/src/YQPkgObjList.cc        2014-02-21 
15:09:38.000000000 +0100
+++ new/libyui-qt-pkg-2.44.2/src/YQPkgObjList.cc        2014-03-04 
13:35:48.000000000 +0100
@@ -441,23 +441,23 @@
 
     actionSetListTaboo                 = createAction( S_Taboo,                
"", true );
 
-    connect( actionSetCurrentInstall,       SIGNAL( activated() ), this, SLOT( 
setCurrentInstall()       ) );
-    connect( actionSetCurrentDontInstall,    SIGNAL( activated() ), this, 
SLOT( setCurrentDontInstall()          ) );
-    connect( actionSetCurrentKeepInstalled,  SIGNAL( activated() ), this, 
SLOT( setCurrentKeepInstalled() ) );
-    connect( actionSetCurrentDelete,        SIGNAL( activated() ), this, SLOT( 
setCurrentDelete()        ) );
-    connect( actionSetCurrentUpdate,        SIGNAL( activated() ), this, SLOT( 
setCurrentUpdate()        ) );
-    connect( actionSetCurrentUpdateForce,    SIGNAL( activated() ), this, 
SLOT( setCurrentUpdateForce()          ) );
-    connect( actionSetCurrentTaboo,         SIGNAL( activated() ), this, SLOT( 
setCurrentTaboo()         ) );
-    connect( actionSetCurrentProtected,             SIGNAL( activated() ), 
this, SLOT( setCurrentProtected()     ) );
-    connect( actionShowCurrentSolverInfo,    SIGNAL( activated() ), this, 
SLOT( showCurrentSolverInfo()          ) );
-    connect( actionSetListInstall,          SIGNAL( activated() ), this, SLOT( 
setListInstall()          ) );
-    connect( actionSetListDontInstall,      SIGNAL( activated() ), this, SLOT( 
setListDontInstall()      ) );
-    connect( actionSetListKeepInstalled,     SIGNAL( activated() ), this, 
SLOT( setListKeepInstalled()   ) );
-    connect( actionSetListDelete,           SIGNAL( activated() ), this, SLOT( 
setListDelete()           ) );
-    connect( actionSetListUpdate,           SIGNAL( activated() ), this, SLOT( 
setListUpdate()           ) );
-    connect( actionSetListUpdateForce,      SIGNAL( activated() ), this, SLOT( 
setListUpdateForce()      ) );
-    connect( actionSetListTaboo,            SIGNAL( activated() ), this, SLOT( 
setListTaboo()            ) );
-    connect( actionSetListProtected,        SIGNAL( activated() ), this, SLOT( 
setListProtected()        ) );
+    connect( actionSetCurrentInstall,       &QAction::triggered, this, 
&YQPkgObjList::setCurrentInstall );
+    connect( actionSetCurrentDontInstall,    &QAction::triggered, this, 
&YQPkgObjList::setCurrentDontInstall );
+    connect( actionSetCurrentKeepInstalled,  &QAction::triggered, this, 
&YQPkgObjList::setCurrentKeepInstalled );
+    connect( actionSetCurrentDelete,        &QAction::triggered, this, 
&YQPkgObjList::setCurrentDelete );
+    connect( actionSetCurrentUpdate,        &QAction::triggered, this, 
&YQPkgObjList::setCurrentUpdate );
+    connect( actionSetCurrentUpdateForce,    &QAction::triggered, this, 
&YQPkgObjList::setCurrentUpdateForce );
+    connect( actionSetCurrentTaboo,         &QAction::triggered, this, 
&YQPkgObjList::setCurrentTaboo );
+    connect( actionSetCurrentProtected,             &QAction::triggered, this, 
&YQPkgObjList::setCurrentProtected );
+    connect( actionShowCurrentSolverInfo,    &QAction::triggered, this, 
&YQPkgObjList::showCurrentSolverInfo );
+    connect( actionSetListInstall,          &QAction::triggered, this, 
&YQPkgObjList::setListInstall );
+    connect( actionSetListDontInstall,      &QAction::triggered, this, 
&YQPkgObjList::setListDontInstall );
+    connect( actionSetListKeepInstalled,     &QAction::triggered, this, 
&YQPkgObjList::setListKeepInstalled );
+    connect( actionSetListDelete,           &QAction::triggered, this, 
&YQPkgObjList::setListDelete );
+    connect( actionSetListUpdate,           &QAction::triggered, this, 
&YQPkgObjList::setListUpdate );
+    connect( actionSetListUpdateForce,      &QAction::triggered, this, 
&YQPkgObjList::setListUpdateForce );
+    connect( actionSetListTaboo,            &QAction::triggered, this, 
&YQPkgObjList::setListTaboo );
+    connect( actionSetListProtected,        &QAction::triggered, this, 
&YQPkgObjList::setListProtected );
 
     // if the solver info plugin did not success to load (which is, the package
     // of the plugin is not installed or was not included in the media
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-qt-pkg-2.44.1/src/YQPkgPatchFilterView.cc 
new/libyui-qt-pkg-2.44.2/src/YQPkgPatchFilterView.cc
--- old/libyui-qt-pkg-2.44.1/src/YQPkgPatchFilterView.cc        2014-02-21 
15:09:38.000000000 +0100
+++ new/libyui-qt-pkg-2.44.2/src/YQPkgPatchFilterView.cc        2014-03-04 
13:35:48.000000000 +0100
@@ -103,7 +103,8 @@
 
     label->setBuddy( _patchFilter );
 
-    connect( _patchFilter, SIGNAL( activated( int ) ), this, SLOT( 
fillPatchList() ) );
+    connect( _patchFilter, static_cast<void 
(QComboBox::*)(int)>(&QComboBox::activated),
+             this, &YQPkgPatchFilterView::fillPatchList );
 
     _detailsViews              = new QTabWidget( _splitter );                  
Q_CHECK_PTR( _detailsViews      );
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to