summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/abstractprocessstep.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2009-01-28 19:29:43 +0100
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2009-01-29 11:57:26 +0100
commitfa4352137e2d8ac800d24bcc529279081e215190 (patch)
tree7425cdf43fc2dea6069de09e294b1334fbaa7806 /src/plugins/projectexplorer/abstractprocessstep.h
parent34a141005728fb10dd51f87173f3005f9e3c469a (diff)
downloadqt-creator-fa4352137e2d8ac800d24bcc529279081e215190.tar.gz
fix comment.
Diffstat (limited to 'src/plugins/projectexplorer/abstractprocessstep.h')
-rw-r--r--src/plugins/projectexplorer/abstractprocessstep.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/abstractprocessstep.h b/src/plugins/projectexplorer/abstractprocessstep.h
index 3aac602291..43e8f49015 100644
--- a/src/plugins/projectexplorer/abstractprocessstep.h
+++ b/src/plugins/projectexplorer/abstractprocessstep.h
@@ -51,9 +51,9 @@ namespace ProjectExplorer {
It should be used as a base class if your buildstep just needs to run a process.
Usage:
- Use setCommand(), setArguments(), setWorkingDirectory() to specify the process you want to run.
- (You need to do that before calling AbstractProcess::init())
- Inside YourBuildStep::init() call AbstractProcessStep::init()
+ Use setCommand(), setArguments(), setWorkingDirectory() to specify the process you want to run
+ (you need to do that before calling AbstractProcessStep::init()).
+ Inside YourBuildStep::init() call AbstractProcessStep::init().
Inside YourBuildStep::run() call AbstractProcessStep::run(), which automatically starts the proces
and by default adds the output on stdOut and stdErr to the OutputWindow.
If you need to process the process output override stdOut() and/or stdErr.