diff options
author | Alex Merry <alex.merry@kde.org> | 2014-03-23 17:35:35 +0000 |
---|---|---|
committer | Alex Merry <alex.merry@kde.org> | 2014-03-25 10:17:49 +0000 |
commit | c8f3b3684e42d5b1e788642863782741703acbd2 (patch) | |
tree | 99400615a9786767018239151816517f4e8bfb4a /src | |
parent | 892e693f616297a91835d3d79353926b96bd1201 (diff) | |
download | kconfig-c8f3b3684e42d5b1e788642863782741703acbd2.tar.gz kconfig-c8f3b3684e42d5b1e788642863782741703acbd2.tar.bz2 |
Remove kde3 compatibility code for "DocPath" in desktop files
LXR suggests nothing still sets that (everything is X-DocPath now).
REVIEW: 117003
Diffstat (limited to 'src')
-rw-r--r-- | src/core/kdesktopfile.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/kdesktopfile.cpp b/src/core/kdesktopfile.cpp index c5857221..facd1ea0 100644 --- a/src/core/kdesktopfile.cpp +++ b/src/core/kdesktopfile.cpp @@ -330,10 +330,6 @@ KDesktopFile::sortOrder() const QString KDesktopFile::readDocPath() const { Q_D(const KDesktopFile); - //legacy entry in kde3 apps - if (d->desktopGroup.hasKey("DocPath")) { - return d->desktopGroup.readPathEntry("DocPath", QString()); - } return d->desktopGroup.readPathEntry("X-DocPath", QString()); } |