Hello community, here is the log from the commit of package kdelibs3 for openSUSE:Factory checked in at 2013-02-07 14:20:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdelibs3 (Old) and /work/SRC/openSUSE:Factory/.kdelibs3.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdelibs3", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes 2013-02-04 19:05:09.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes 2013-02-07 14:20:48.000000000 +0100 @@ -1,0 +2,6 @@ +Thu Feb 7 09:12:19 UTC 2013 - [email protected] + +- fix KDE bug#111827 + (kdelibs-kactionselector-multiple-item-movement.patch) + +------------------------------------------------------------------- New: ---- kdelibs-kactionselector-multiple-item-movement.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdelibs3.spec ++++++ --- /var/tmp/diff_new_pack.9WRhxp/_old 2013-02-07 14:20:52.000000000 +0100 +++ /var/tmp/diff_new_pack.9WRhxp/_new 2013-02-07 14:20:52.000000000 +0100 @@ -196,6 +196,7 @@ Patch224: dcop-header-fix-gcc47.patch Patch225: kdelibs-trinity-xinit-fix.patch Patch226: initialise-mCrossDomain-fix.diff +Patch227: kdelibs-kactionselector-multiple-item-movement.patch %description This package contains kdelibs, one of the basic packages of the K @@ -396,6 +397,7 @@ %patch224 -p1 %patch225 -p1 %patch226 -p1 +%patch227 -p1 tar xfvj %SOURCE12 # ++++++ kdelibs-kactionselector-multiple-item-movement.patch ++++++ --- a/kdeui/kactionselector.cpp 2005-09-01 00:04:41.000000000 +0800 +++ b/kdeui/kactionselector.cpp 2005-09-01 00:01:02.000000000 +0800 @@ -423,8 +423,9 @@ d->selectedListBox->insertItem( item, insertionIndex( d->selectedListBox, d->selectedInsertionPolicy ) ); d->selectedListBox->setCurrentItem( item ); emit added( item ); - } - item = item->next(); + item = d->availableListBox->firstItem(); + } else + item = item->next(); } if ( d->selectedInsertionPolicy == Sorted ) d->selectedListBox->sort(); @@ -441,8 +442,9 @@ d->availableListBox->insertItem( item, insertionIndex( d->availableListBox, d->availableInsertionPolicy ) ); d->availableListBox->setCurrentItem( item ); emit removed( item ); - } - item = item->next(); + item = d->selectedListBox->firstItem(); + } else + item = item->next(); } if ( d->availableInsertionPolicy == Sorted ) d->availableListBox->sort(); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
