summaryrefslogtreecommitdiff
path: root/src/libs/utils/buildablehelperlibrary.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-06-27 10:32:03 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-06-27 19:25:56 +0200
commit7c45f1c926b9a38da87a0d51a39ee9257a98b1ea (patch)
tree57817332d9eeef119c0b1bcc97f26bd30618bfc6 /src/libs/utils/buildablehelperlibrary.cpp
parent90b15b0245cfa5b7058ac563df184355ef0e68a3 (diff)
downloadqt-creator-7c45f1c926b9a38da87a0d51a39ee9257a98b1ea.tar.gz
BuildableHelperLibrary: Remove unused/unimplemented methods
Change-Id: I5ada82f162e6d92fb5b4580c613de2f8785388e4 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/libs/utils/buildablehelperlibrary.cpp')
-rw-r--r--src/libs/utils/buildablehelperlibrary.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/libs/utils/buildablehelperlibrary.cpp b/src/libs/utils/buildablehelperlibrary.cpp
index b6f0331246..967ef75fe9 100644
--- a/src/libs/utils/buildablehelperlibrary.cpp
+++ b/src/libs/utils/buildablehelperlibrary.cpp
@@ -85,15 +85,6 @@ Utils::FileName BuildableHelperLibrary::findSystemQt(const Utils::Environment &e
return Utils::FileName();
}
-QString BuildableHelperLibrary::qtInstallDataDir(const Utils::FileName &qmakePath)
-{
- QProcess proc;
- proc.start(qmakePath.toString(), QStringList() << QLatin1String("-query") << QLatin1String("QT_INSTALL_DATA"));
- if (proc.waitForFinished())
- return QString::fromLocal8Bit(proc.readAll()).trimmed();
- return QString();
-}
-
QString BuildableHelperLibrary::qtVersionForQMake(const QString &qmakePath)
{
bool qmakeIsExecutable;