aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmlprojectmanager/qmlproject.cpp
diff options
context:
space:
mode:
authordt <[email protected]>2009-08-06 15:31:32 +0200
committerdt <[email protected]>2009-08-06 15:31:32 +0200
commitdbe5a6f34b7b78a84a6e8dc5f7c2805560b757e6 (patch)
tree1a95e1f88df1678628572164bd89be9836b2d242 /src/plugins/qmlprojectmanager/qmlproject.cpp
parent4e7881577dce66476f76ad1362353c2bb8bbdac7 (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.cpp6
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 &)