forked from mirrors/nixpkgs
26 lines
914 B
Diff
26 lines
914 B
Diff
From 78a4b554187c18fd86b62089f7730c4273fadd4c Mon Sep 17 00:00:00 2001
|
|
From: Thomas Tuegel <ttuegel@gmail.com>
|
|
Date: Wed, 14 Oct 2015 07:05:22 -0500
|
|
Subject: [PATCH] qdiriterator follow symlinks
|
|
|
|
---
|
|
clients/aurorae/src/aurorae.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp
|
|
index 781c960..ad5f420 100644
|
|
--- a/clients/aurorae/src/aurorae.cpp
|
|
+++ b/clients/aurorae/src/aurorae.cpp
|
|
@@ -211,7 +211,7 @@ void Helper::init()
|
|
// so let's try to locate our plugin:
|
|
QString pluginPath;
|
|
for (const QString &path : m_engine->importPathList()) {
|
|
- QDirIterator it(path, QDirIterator::Subdirectories);
|
|
+ QDirIterator it(path, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
QFileInfo fileInfo = it.fileInfo();
|
|
--
|
|
2.5.2
|
|
|