diff options
author | Robert Xu <robxu9@gmail.com> | 2011-08-24 17:26:04 -0400 |
---|---|---|
committer | Robert Xu <robxu9@gmail.com> | 2011-08-24 17:26:04 -0400 |
commit | 93c66bf8bb8ac0124ae1800cbaaeb814742bfac5 (patch) | |
tree | 2551422a7981b35684110fae090223b7a1b6d73f /opensuse/tdebase/fix-lockup-from-gnome-apps.diff | |
parent | 425774d7d1d663e08bb06050924f2eeca9147bba (diff) | |
download | tde-packaging-93c66bf8bb8ac0124ae1800cbaaeb814742bfac5.tar.gz tde-packaging-93c66bf8bb8ac0124ae1800cbaaeb814742bfac5.zip |
dbus-1-tqt -> libdbus-tqt-1-0 AND tdelibs import (unchanged)
Diffstat (limited to 'opensuse/tdebase/fix-lockup-from-gnome-apps.diff')
-rw-r--r-- | opensuse/tdebase/fix-lockup-from-gnome-apps.diff | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/opensuse/tdebase/fix-lockup-from-gnome-apps.diff b/opensuse/tdebase/fix-lockup-from-gnome-apps.diff new file mode 100644 index 000000000..05fc4313b --- /dev/null +++ b/opensuse/tdebase/fix-lockup-from-gnome-apps.diff @@ -0,0 +1,20 @@ +Index: khelpcenter/navigator.cpp +=================================================================== +--- khelpcenter/navigator.cpp.orig ++++ khelpcenter/navigator.cpp +@@ -333,9 +333,14 @@ void Navigator::selectItem( const KURL & + // First, populate the NavigatorAppItems if we don't want the home page + if ( url != homeURL() ) { + for ( QListViewItem *item = mContentsTree->firstChild(); item; +- item = item->nextSibling() ) { ++ item = item->nextSibling() ) { + NavigatorAppItem *appItem = dynamic_cast<NavigatorAppItem *>( item ); + if ( appItem ) appItem->populate( true /* recursive */ ); ++ for ( QListViewItem *subitem = item->firstChild(); subitem; ++ subitem = subitem->nextSibling() ) { ++ appItem = dynamic_cast<NavigatorAppItem *>( subitem ); ++ if ( appItem ) appItem->populate( true /* recursive */ ); ++ } + } + } + |