diff options
author | hjk <hjk121@nokiamail.com> | 2014-04-29 08:35:00 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-04-29 12:35:29 +0200 |
commit | 2e757deab4fdbe412d86c7b0ba79f8c21ca06435 (patch) | |
tree | 6b3c5e85af2e9680ce6a23eeee7bca978e25e295 /src/plugins/projectexplorer/projectnodes.h | |
parent | f0a8f4d9185a9d7dc37a9d204e2e2ab36a6f4284 (diff) | |
download | qt-creator-2e757deab4fdbe412d86c7b0ba79f8c21ca06435.tar.gz |
ProjectNodes: Refactor runConfigurationsFor()
Rename to runConfigurations() and remove the node argument which is
available as 'this'. Adjust const-ness of node argument in
RunConfigurationFactory::runConfigurationsForNode
Change-Id: Icb63e96a305152f90135a2656536de2581faafaf
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/projectnodes.h')
-rw-r--r-- | src/plugins/projectexplorer/projectnodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/projectnodes.h b/src/plugins/projectexplorer/projectnodes.h index d6dd28dfb8..fbf6909b5e 100644 --- a/src/plugins/projectexplorer/projectnodes.h +++ b/src/plugins/projectexplorer/projectnodes.h @@ -249,8 +249,7 @@ public: // by default returns false virtual bool deploysFolder(const QString &folder) const; - // TODO node parameter not really needed - virtual QList<ProjectExplorer::RunConfiguration *> runConfigurationsFor(Node *node) = 0; + virtual QList<ProjectExplorer::RunConfiguration *> runConfigurations() const; QList<NodesWatcher*> watchers() const; |