forked from qt-creator/qt-creator
projectexplorer: s/IPropertiesPanel/PropertiesPanel. No need for subclassing.
This commit is contained in:
@@ -182,12 +182,12 @@ void TargetSettingsPanelWidget::currentTargetChanged(int targetIndex, int subInd
|
||||
|
||||
foreach (ITargetPanelFactory *panelFactory, ExtensionSystem::PluginManager::instance()->getObjects<ITargetPanelFactory>()) {
|
||||
if (panelFactory->id() == QLatin1String(BUILDSETTINGS_PANEL_ID)) {
|
||||
IPropertiesPanel *panel = panelFactory->createPanel(target);
|
||||
PropertiesPanel *panel = panelFactory->createPanel(target);
|
||||
buildPanel->addPropertiesPanel(panel);
|
||||
continue;
|
||||
}
|
||||
if (panelFactory->id() == QLatin1String(RUNSETTINGS_PANEL_ID)) {
|
||||
IPropertiesPanel *panel = panelFactory->createPanel(target);
|
||||
PropertiesPanel *panel = panelFactory->createPanel(target);
|
||||
runPanel->addPropertiesPanel(panel);
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user