diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-16 00:05:58 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-16 00:05:58 -0500 |
commit | 75692d2d11ecc5f31c55adbd0daeef02e510143b (patch) | |
tree | ca5eb617dc6381e87a25a2c939163b6acf1878ca /src/dolphincontextmenu.cpp | |
parent | 68fff8abfc49c896e07c75acdb1b05f89fa965b5 (diff) | |
download | dolphin-75692d2d11ecc5f31c55adbd0daeef02e510143b.tar.gz dolphin-75692d2d11ecc5f31c55adbd0daeef02e510143b.zip |
Fix straggling XDG references missed in patch set from June 8, 2012.
Diffstat (limited to 'src/dolphincontextmenu.cpp')
-rw-r--r-- | src/dolphincontextmenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp index 5a7d248..3d7f68f 100644 --- a/src/dolphincontextmenu.cpp +++ b/src/dolphincontextmenu.cpp @@ -367,7 +367,7 @@ void DolphinContextMenu::insertActionItems(KPopupMenu* popup, for (TQStringList::ConstIterator entryIt = entries.begin(); entryIt != entries.end(); ++entryIt) { KSimpleConfig cfg(*dirIt + *entryIt, true); cfg.setDesktopGroup(); - if ((cfg.hasKey("Actions") || cfg.hasKey("X-KDE-GetActionMenu")) && cfg.hasKey("ServiceTypes")) { + if ((cfg.hasKey("Actions") || cfg.hasKey("X-TDE-GetActionMenu")) && cfg.hasKey("ServiceTypes")) { const TQStringList types = cfg.readListEntry("ServiceTypes"); for (TQStringList::ConstIterator it = types.begin(); it != types.end(); ++it) { // check whether the mime type is equal or whether the @@ -413,7 +413,7 @@ void DolphinContextMenu::insertActionItems(KPopupMenu* popup, if (insert) { menu = actionsMenu; - const TQString submenuName = cfg.readEntry( "X-KDE-Submenu" ); + const TQString submenuName = cfg.readEntry( "X-TDE-Submenu" ); if (!submenuName.isEmpty()) { menu = new KPopupMenu(); actionsMenu->insertItem(submenuName, menu, submenuID); |