diff options
author | hjk <qtc-committer@nokia.com> | 2010-07-21 17:06:22 +0200 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-07-22 10:59:22 +0200 |
commit | 96561a38c719c528dd60723d170d0ae453223f6a (patch) | |
tree | 0a53056ee7f35b29661ebb26a7fb27e4c860ced8 /src/plugins/projectexplorer/target.h | |
parent | 990dba7551aa1a4e61c13acd750ee589c8b9aaf6 (diff) | |
download | qt-creator-96561a38c719c528dd60723d170d0ae453223f6a.tar.gz |
debugger: enable debugging of multiple projects at the same time
Diffstat (limited to 'src/plugins/projectexplorer/target.h')
-rw-r--r-- | src/plugins/projectexplorer/target.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/projectexplorer/target.h b/src/plugins/projectexplorer/target.h index f68e311766..c6c9e722de 100644 --- a/src/plugins/projectexplorer/target.h +++ b/src/plugins/projectexplorer/target.h @@ -65,11 +65,11 @@ public: // Running QList<RunConfiguration *> runConfigurations() const; - void addRunConfiguration(RunConfiguration* runConfiguration); - void removeRunConfiguration(RunConfiguration* runConfiguration); + void addRunConfiguration(RunConfiguration *runConfiguration); + void removeRunConfiguration(RunConfiguration *runConfiguration); - RunConfiguration* activeRunConfiguration() const; - void setActiveRunConfiguration(RunConfiguration* runConfiguration); + RunConfiguration *activeRunConfiguration() const; + void setActiveRunConfiguration(RunConfiguration *runConfiguration); // Returns whether this target is actually available at he time // of the call. A target may become unavailable e.g. when a Qt version |