Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-20 16:20:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-qt.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-qt", Maintainer is "tgoettlic...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes        2012-02-08 
17:21:58.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-20 
16:20:13.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection and sorting in Table widget (bnc#746156) 
+- Version: 2.22.3
+
+-------------------------------------------------------------------

Old:
----
  yast2-qt-2.22.2.tar.bz2

New:
----
  yast2-qt-2.22.3.tar.bz2

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

Other differences:
------------------
++++++ yast2-qt.spec ++++++
--- /var/tmp/diff_new_pack.fGGh3U/_old  2012-02-20 16:20:14.000000000 +0100
+++ /var/tmp/diff_new_pack.fGGh3U/_new  2012-02-20 16:20:14.000000000 +0100
@@ -18,11 +18,11 @@
 
 
 Name:           yast2-qt
-Version:        2.22.2
+Version:        2.22.3
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-qt-2.22.2.tar.bz2
+Source0:        yast2-qt-2.22.3.tar.bz2
 Group:          System/YaST
 License:        GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++++++ yast2-qt-2.22.2.tar.bz2 -> yast2-qt-2.22.3.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/VERSION.cmake 
new/yast2-qt-2.22.3/VERSION.cmake
--- old/yast2-qt-2.22.2/VERSION.cmake   2012-02-08 14:54:52.000000000 +0100
+++ new/yast2-qt-2.22.3/VERSION.cmake   2012-02-17 16:18:32.000000000 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "22")
-SET(VERSION_PATCH "2")
+SET(VERSION_PATCH "3")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/package/yast2-qt.changes 
new/yast2-qt-2.22.3/package/yast2-qt.changes
--- old/yast2-qt-2.22.2/package/yast2-qt.changes        2012-02-08 
14:54:52.000000000 +0100
+++ new/yast2-qt-2.22.3/package/yast2-qt.changes        2012-02-17 
16:18:32.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection and sorting in Table widget (bnc#746156) 
+- Version: 2.22.3
+
+-------------------------------------------------------------------
 Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
 
 - Fixed bnc#731540: fixed auto-scroll in LogView
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/src/YQTable.cc 
new/yast2-qt-2.22.3/src/YQTable.cc
--- old/yast2-qt-2.22.2/src/YQTable.cc  2012-02-08 14:54:52.000000000 +0100
+++ new/yast2-qt-2.22.3/src/YQTable.cc  2012-02-17 16:18:32.000000000 +0100
@@ -95,6 +95,7 @@
 
     _qt_listView->setHeaderLabels( headers );
     _qt_listView->header()->setResizeMode( QHeaderView::Interactive );
+    _qt_listView->sortItems( 0, Qt::AscendingOrder);
 
     
     //
@@ -216,8 +217,6 @@
     if ( sel )
        YQTable::selectItem( sel, true );
     
-    _qt_listView->sortItems( 0, Qt::AscendingOrder);
-
     for ( int i=0; i < columns(); i++ )
        _qt_listView->resizeColumnToContents( i );
 }
@@ -297,7 +296,7 @@
 void
 YQTable::slotSelected( QTreeWidgetItem * listViewItem  )
 {
-    if ( listViewItem )
+    if ( listViewItem && listViewItem->isSelected() )
        selectOrigItem( listViewItem );
     else
     {

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

Reply via email to