diff options
author | dt <[email protected]> | 2009-08-06 15:31:32 +0200 |
---|---|---|
committer | dt <[email protected]> | 2009-08-06 15:31:32 +0200 |
commit | dbe5a6f34b7b78a84a6e8dc5f7c2805560b757e6 (patch) | |
tree | 1a95e1f88df1678628572164bd89be9836b2d242 /src/plugins/qmlprojectmanager/qmlproject.cpp | |
parent | 4e7881577dce66476f76ad1362353c2bb8bbdac7 (diff) |
Rework the project settings.
This has still a few missing things, but this enough to start getting
some feedback. Missing are non qt projects, a solution for the
runconfiguration, a missing black line between the treeview on top and
the project settings at the bottom. Some flickering with removing/adding
widgets to the QScrollArea and not showing the expanded widget if the
Details button is right at the bottom.
Diffstat (limited to 'src/plugins/qmlprojectmanager/qmlproject.cpp')
-rw-r--r-- | src/plugins/qmlprojectmanager/qmlproject.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/qmlprojectmanager/qmlproject.cpp b/src/plugins/qmlprojectmanager/qmlproject.cpp index b9a7d2e5d2b..e8fce4f33a2 100644 --- a/src/plugins/qmlprojectmanager/qmlproject.cpp +++ b/src/plugins/qmlprojectmanager/qmlproject.cpp @@ -200,14 +200,14 @@ QString QmlProject::buildDirectory(const QString &) const return QString(); } -ProjectExplorer::BuildStepConfigWidget *QmlProject::createConfigWidget() +ProjectExplorer::BuildConfigWidget *QmlProject::createConfigWidget() { return 0; } -QList<ProjectExplorer::BuildStepConfigWidget*> QmlProject::subConfigWidgets() +QList<ProjectExplorer::BuildConfigWidget*> QmlProject::subConfigWidgets() { - return QList<ProjectExplorer::BuildStepConfigWidget*>(); + return QList<ProjectExplorer::BuildConfigWidget*>(); } void QmlProject::newBuildConfiguration(const QString &) |