[yast-commit] r67536 - in /branches/SuSE-Code-11-SP2-Branch/qt: VERSION.cmake package/yast2-qt.changes src/YQTable.cc
![](https://seccdn.libravatar.org/avatar/8ea7e9df6cc79a33898e71283aa37a3c.jpg?s=120&d=mm&r=g)
Author: tgoettlicher Date: Thu Feb 23 15:15:56 2012 New Revision: 67536 URL: http://svn.opensuse.org/viewcvs/yast?rev=67536&view=rev Log: fixed selection Modified: branches/SuSE-Code-11-SP2-Branch/qt/VERSION.cmake branches/SuSE-Code-11-SP2-Branch/qt/package/yast2-qt.changes branches/SuSE-Code-11-SP2-Branch/qt/src/YQTable.cc Modified: branches/SuSE-Code-11-SP2-Branch/qt/VERSION.cmake URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/qt/VER... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/qt/VERSION.cmake (original) +++ branches/SuSE-Code-11-SP2-Branch/qt/VERSION.cmake Thu Feb 23 15:15:56 2012 @@ -1,3 +1,3 @@ SET(VERSION_MAJOR "2") SET(VERSION_MINOR "21") -SET(VERSION_PATCH "6") +SET(VERSION_PATCH "7") Modified: branches/SuSE-Code-11-SP2-Branch/qt/package/yast2-qt.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/qt/pac... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/qt/package/yast2-qt.changes (original) +++ branches/SuSE-Code-11-SP2-Branch/qt/package/yast2-qt.changes Thu Feb 23 15:15:56 2012 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Feb 23 15:15:07 CET 2012 - tgoettlicher@suse.de + +- Fixed selection in Table widget (bnc#746156) +- V 2.21.7 + +------------------------------------------------------------------- Fri Feb 17 16:27:15 CET 2012 - tgoettlicher@suse.de - Fixed selection and sorting in Table widget (bnc#746156) Modified: branches/SuSE-Code-11-SP2-Branch/qt/src/YQTable.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/qt/src... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/qt/src/YQTable.cc (original) +++ branches/SuSE-Code-11-SP2-Branch/qt/src/YQTable.cc Thu Feb 23 15:15:56 2012 @@ -295,7 +295,7 @@ void YQTable::slotSelected( QTreeWidgetItem * listViewItem ) { - if ( listViewItem && listViewItem->isSelected() ) + if ( listViewItem && _qt_listView->selectedItems().count() > 0 ) selectOrigItem( listViewItem ); else { -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
tgoettlicher@svn2.opensuse.org