summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorkh1 <qt-info@nokia.com>2011-05-23 13:01:17 +0200
committerkh1 <qt-info@nokia.com>2011-05-23 13:01:17 +0200
commite3c9544ea28e6b9091198fa4adbd615addc9d5d6 (patch)
tree8554bd4c876b8a6972a9951a61c4dc9ccde6646e /tools
parentb44f3ba517f1bba36d2cbef49ba37093df610601 (diff)
parenta9c63f5aad676840de6e45fe213c12e2aab427f6 (diff)
Merge branch 'master' into refactor
Diffstat (limited to 'tools')
-rw-r--r--tools/operationrunner/fakeinstaller.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/operationrunner/fakeinstaller.cpp b/tools/operationrunner/fakeinstaller.cpp
index e58aa1258..e80dbb2a5 100644
--- a/tools/operationrunner/fakeinstaller.cpp
+++ b/tools/operationrunner/fakeinstaller.cpp
@@ -1,8 +1,10 @@
#include "fakeinstaller.h"
+#include <QFileInfo>
+
void FakeInstaller::setTargetDir(const QString &targetDir)
{
- m_targetDir = targetDir;
+ m_targetDir = QFileInfo(targetDir).absoluteFilePath();
}
QString FakeInstaller::value(const QString &key, const QString &/*defaultValue*/) const