26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Tuegel <ttuegel@gmail.com>
|
|
Date: Wed, 14 Oct 2015 06:47:01 -0500
|
|
Subject: [PATCH] qdiriterator follow symlinks
|
|
|
|
---
|
|
src/khelpclient.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp
|
|
index 53a331e..80fbb01 100644
|
|
--- a/src/khelpclient.cpp
|
|
+++ b/src/khelpclient.cpp
|
|
@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname)
|
|
QString docPath;
|
|
const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation);
|
|
Q_FOREACH (const QString &dir, desktopDirs) {
|
|
- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories);
|
|
+ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks);
|
|
while (it.hasNext()) {
|
|
const QString desktopPath(it.next());
|
|
KDesktopFile desktopFile(desktopPath);
|
|
--
|
|
2.5.2
|
|
|