summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian Multimedia Maintainers <debian-multimedia@lists.debian.org>2019-07-15 21:23:20 +0200
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>2019-07-15 21:23:20 +0200
commite90a72d1efa87f9e3db0bbfdce16d5926af4df16 (patch)
treeab24e570449cdfb3378c6595e6e323e123267de3
parent1cf40ae2abb46384ae30574f69245a332c36e84e (diff)
Make application search for helper-apps in lib/sonic-visualiser
Forwarded: no Last-Update: 2017-10-05 rather than in bin/ Last-Update: 2017-10-05 Gbp-Pq: Name 01-system_helper_path.patch
-rw-r--r--svcore/base/HelperExecPath.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/svcore/base/HelperExecPath.cpp b/svcore/base/HelperExecPath.cpp
index e01ca8d..afe61c6 100644
--- a/svcore/base/HelperExecPath.cpp
+++ b/svcore/base/HelperExecPath.cpp
@@ -60,6 +60,7 @@ HelperExecPath::getHelperDirPaths()
{
QStringList dirs;
QString myDir = QCoreApplication::applicationDirPath();
+ dirs.push_back(myDir + "/../lib/sonic-visualiser/helpers");
dirs.push_back(myDir + "/helpers");
dirs.push_back(myDir);
return dirs;