From 60a25a0fe53314833e60161c57e7f19290f70c63 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 10 Mar 2012 17:43:13 -0600 Subject: Fix icons not showing up on desktop and popup menu entries not appearing --- libkonq/konq_popupmenu.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libkonq') diff --git a/libkonq/konq_popupmenu.cc b/libkonq/konq_popupmenu.cc index b878b0ae5..c396bc2c0 100644 --- a/libkonq/konq_popupmenu.cc +++ b/libkonq/konq_popupmenu.cc @@ -876,20 +876,20 @@ void KonqPopupMenu::setup(KonqPopupFlags kpf) { KService::Ptr service = (*it); - // Skip OnlyShowIn=Foo and NotShowIn=KDE entries, + // Skip OnlyShowIn=Foo and NotShowIn=TDE entries, // but still offer NoDisplay=true entries, that's the // whole point of such desktop files. This is why we don't // use service->noDisplay() here. const TQString onlyShowIn = service->property("OnlyShowIn", TQVariant::String).toString(); if ( !onlyShowIn.isEmpty() ) { const TQStringList aList = TQStringList::split(';', onlyShowIn); - if (!aList.contains("KDE")) + if (!aList.contains("TDE")) continue; } const TQString notShowIn = service->property("NotShowIn", TQVariant::String).toString(); if ( !notShowIn.isEmpty() ) { const TQStringList aList = TQStringList::split(';', notShowIn); - if (aList.contains("KDE")) + if (aList.contains("TDE")) continue; } -- cgit v1.2.3