summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/buildmanager.h
diff options
context:
space:
mode:
authordt <qtc-committer@nokia.com>2010-01-13 14:02:09 +0100
committerdt <qtc-committer@nokia.com>2010-01-13 18:02:22 +0100
commit407b7f1ff0ea0b5772d5bfc5d9a9a9de96098f48 (patch)
treedcf7f14221f9d60bca88a8dca21722c8cccf1cce /src/plugins/projectexplorer/buildmanager.h
parentdd14b75f6cc1f800bc646ba83095590bf1503e6d (diff)
downloadqt-creator-407b7f1ff0ea0b5772d5bfc5d9a9a9de96098f48.tar.gz
Move BuildStep::init() to where they are added to the buildqueue
Actually that's more correct. E.g. imagine building a project, and while the qmake step runs changing the working directory. The make step would be affected by that. With the change both the qmake and make step get their working directory on beeing added to the queue and so don't care if the setting is changed afterwards.
Diffstat (limited to 'src/plugins/projectexplorer/buildmanager.h')
-rw-r--r--src/plugins/projectexplorer/buildmanager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/buildmanager.h b/src/plugins/projectexplorer/buildmanager.h
index 47e59ec42b..6059a9d5d8 100644
--- a/src/plugins/projectexplorer/buildmanager.h
+++ b/src/plugins/projectexplorer/buildmanager.h
@@ -107,7 +107,7 @@ private:
void startBuildQueue();
void nextStep();
void clearBuildQueue();
- void buildQueueAppend(BuildStep * bs);
+ bool buildQueueAppend(BuildStep * bs);
void incrementActiveBuildSteps(Project *pro);
void decrementActiveBuildSteps(Project *pro);