summaryrefslogtreecommitdiffstats
path: root/opensuse/tdebase/fix-lockup-from-gnome-apps.diff
diff options
context:
space:
mode:
Diffstat (limited to 'opensuse/tdebase/fix-lockup-from-gnome-apps.diff')
-rw-r--r--opensuse/tdebase/fix-lockup-from-gnome-apps.diff20
1 files changed, 0 insertions, 20 deletions
diff --git a/opensuse/tdebase/fix-lockup-from-gnome-apps.diff b/opensuse/tdebase/fix-lockup-from-gnome-apps.diff
deleted file mode 100644
index 05fc4313b..000000000
--- a/opensuse/tdebase/fix-lockup-from-gnome-apps.diff
+++ /dev/null
@@ -1,20 +0,0 @@
-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 */ );
-+ }
- }
- }
-