forked from qt-creator/qt-creator
ProjectExplorer: Rename KitAspect related classes
KitAspect -> KitAspectFactory KitAspectWidget -> KitAspect KitAspect::createConfigWidget() -> KitAspectFactory::createKitAspect() Possibly not perfect yet, but closer to what it does and is. There will be follow-ups to rename derived classes. Change-Id: I226f6f025f1e6462c348b68663f776f5a2e8c42d Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -651,13 +651,13 @@ void CMakeBuildSettingsWidget::kitCMakeConfiguration()
|
||||
CMakeConfigurationKitAspect configurationKitAspect;
|
||||
|
||||
Layouting::Grid grid;
|
||||
KitAspectWidget *widget = kitAspect.createConfigWidget(m_buildConfig->kit());
|
||||
KitAspect *widget = kitAspect.createKitAspect(m_buildConfig->kit());
|
||||
widget->setParent(dialog);
|
||||
widget->addToLayoutWithLabel(grid, dialog);
|
||||
widget = generatorAspect.createConfigWidget(m_buildConfig->kit());
|
||||
widget = generatorAspect.createKitAspect(m_buildConfig->kit());
|
||||
widget->setParent(dialog);
|
||||
widget->addToLayoutWithLabel(grid, dialog);
|
||||
widget = configurationKitAspect.createConfigWidget(m_buildConfig->kit());
|
||||
widget = configurationKitAspect.createKitAspect(m_buildConfig->kit());
|
||||
widget->setParent(dialog);
|
||||
widget->addToLayoutWithLabel(grid, dialog);
|
||||
grid.attachTo(dialog);
|
||||
|
||||
Reference in New Issue
Block a user