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/infosidebarpage.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/infosidebarpage.cpp')
-rw-r--r-- | src/infosidebarpage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index ad9a46e..8efcba5 100644 --- a/src/infosidebarpage.cpp +++ b/src/infosidebarpage.cpp @@ -443,7 +443,7 @@ void InfoSidebarPage::insertActions() 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 @@ -481,7 +481,7 @@ void InfoSidebarPage::insertActions() } if (insert) { - const TQString submenuName = cfg.readEntry( "X-KDE-Submenu" ); + const TQString submenuName = cfg.readEntry( "X-TDE-Submenu" ); TQPopupMenu* popup = 0; if (!submenuName.isEmpty()) { // create a sub menu containing all actions |