summaryrefslogtreecommitdiff
path: root/src/plugins/qnx/blackberryrunconfiguration.cpp
diff options
context:
space:
mode:
authorTobias Nätterlund <tobias.naetterlund.qnx@kdab.com>2013-03-21 11:01:13 +0100
committerTobias Nätterlund <tobias.naetterlund@kdab.com>2013-03-21 13:49:45 +0100
commit25f9de114088e10dff7d352f648d12c7f0f35b3b (patch)
tree6ae6b84f601fb14f855afa39f79501286e1f1884 /src/plugins/qnx/blackberryrunconfiguration.cpp
parent2bb4f6c1756a285ade4bd57074d3b7ebb9117790 (diff)
downloadqt-creator-25f9de114088e10dff7d352f648d12c7f0f35b3b.tar.gz
QNX: Fixed paths to bar package to match build directory
Unless the package path, or application descriptor path, are changed actively by the user, those values will now be automatically generated from the build directory and source directory respectively. This fixes a problem where the path to the package would be in the debug build directory, even though the build mode was switched to release. Task-number: QTCREATORBUG-8991 Change-Id: I78137fc8a6ba0532663808ac9800c03e8371e148 Reviewed-by: Mehdi Fekari <mfekari@rim.com> Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/qnx/blackberryrunconfiguration.cpp')
-rw-r--r--src/plugins/qnx/blackberryrunconfiguration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qnx/blackberryrunconfiguration.cpp b/src/plugins/qnx/blackberryrunconfiguration.cpp
index 165b45cc23..aa732b305a 100644
--- a/src/plugins/qnx/blackberryrunconfiguration.cpp
+++ b/src/plugins/qnx/blackberryrunconfiguration.cpp
@@ -102,7 +102,7 @@ QString BlackBerryRunConfiguration::barPackage() const
QList<BarPackageDeployInformation> packages = dc->deploymentInfo()->enabledPackages();
foreach (const BarPackageDeployInformation package, packages) {
if (package.proFilePath == proFilePath())
- return package.packagePath;
+ return package.packagePath();
}
return QString();
}