aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qt4projectmanager/qt4project.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2013-03-15 15:38:28 +0100
committerTobias Hunger <tobias.hunger@digia.com>2013-03-19 11:23:57 +0100
commit33f54d10c6a11d6a7d0228e67dce9e4e1f165411 (patch)
tree19a6e9c7acf87205421bfb8b8acf8a4c5355e114 /src/plugins/qt4projectmanager/qt4project.cpp
parentdfaca0e908cfe8c0246a898539729a234748a9b0 (diff)
s/ProjectExpander/ProjectMacroExpander/g
The new name is a better description of what the class is all about, it matches the filename and it does not conflict show up when trying to expand "PE" to ProjectExplorer. Change-Id: Ie6a10b9a83dc8bc529e35e3381f733dbe25847a3 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/qt4projectmanager/qt4project.cpp')
-rw-r--r--src/plugins/qt4projectmanager/qt4project.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qt4projectmanager/qt4project.cpp b/src/plugins/qt4projectmanager/qt4project.cpp
index 293404ecca..1618d46cb0 100644
--- a/src/plugins/qt4projectmanager/qt4project.cpp
+++ b/src/plugins/qt4projectmanager/qt4project.cpp
@@ -1390,7 +1390,7 @@ QString Qt4Project::shadowBuildDirectory(const QString &proFilePath, const Kit *
return info.absolutePath();
const QString projectName = QFileInfo(proFilePath).completeBaseName();
- ProjectExplorer::ProjectExpander expander(proFilePath, projectName, k, suffix);
+ ProjectExplorer::ProjectMacroExpander expander(proFilePath, projectName, k, suffix);
QDir projectDir = QDir(projectDirectory(proFilePath));
QString buildPath = Utils::expandMacros(Core::DocumentManager::buildDirectory(), &expander);
return QDir::cleanPath(projectDir.absoluteFilePath(buildPath));