summaryrefslogtreecommitdiffstats
path: root/libkonq
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-10 17:43:13 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-10 17:43:13 -0600
commit60a25a0fe53314833e60161c57e7f19290f70c63 (patch)
treef1d27e1a53b89a124f2d8883220bf22651863c8e /libkonq
parentdc60162d6a68fac0f7f5eb381f40e0c878072673 (diff)
downloadtdebase-60a25a0fe53314833e60161c57e7f19290f70c63.tar.gz
tdebase-60a25a0fe53314833e60161c57e7f19290f70c63.zip
Fix icons not showing up on desktop and popup menu entries not appearing
Diffstat (limited to 'libkonq')
-rw-r--r--libkonq/konq_popupmenu.cc6
1 files changed, 3 insertions, 3 deletions
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;
}