summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/runconfiguration.h
diff options
context:
space:
mode:
authordt <qtc-commiter@nokia.com>2008-12-09 14:13:29 +0100
committerdt <qtc-commiter@nokia.com>2008-12-09 14:13:29 +0100
commit7d4dab15a5823c88a7e1911c6c4e7c90d995e12d (patch)
tree0c2fb77563211715de26f22c8ac53168bd11e424 /src/plugins/projectexplorer/runconfiguration.h
parent7411d9db55404f83a7a649f682e0cd987cdd2718 (diff)
downloadqt-creator-7d4dab15a5823c88a7e1911c6c4e7c90d995e12d.tar.gz
Fixes: Some running support for cmake
Task: - RevBy: - AutoTest: - Details: Note: I need to refactor the code significantly, i'm more or less convinced that one build configuration per target is wrong. We probably want one build configuration per build directory and instead build all targets that we are interested then in the makestep. This means we won't have any cmake support for the beta.
Diffstat (limited to 'src/plugins/projectexplorer/runconfiguration.h')
-rw-r--r--src/plugins/projectexplorer/runconfiguration.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/runconfiguration.h b/src/plugins/projectexplorer/runconfiguration.h
index 8d2e7b45d6..def848765d 100644
--- a/src/plugins/projectexplorer/runconfiguration.h
+++ b/src/plugins/projectexplorer/runconfiguration.h
@@ -80,6 +80,7 @@ public:
void setName(const QString &name);
// Returns the widget used to configure this run configuration. Ownership is transferred to the caller
+ // rename to createConfigurationWidget
virtual QWidget *configurationWidget() = 0;
virtual void save(PersistentSettingsWriter &writer) const;
@@ -112,7 +113,6 @@ public:
// used to translate the types to names to display to the user
virtual QString nameForType(const QString &type) const = 0;
virtual QSharedPointer<RunConfiguration> create(Project *project, const QString &type) = 0;
-
};
class PROJECTEXPLORER_EXPORT IRunConfigurationRunner : public QObject