forked from qt-creator/qt-creator
ProjectExplorer: Rename Base*Aspect to *Aspect
In most cases they are used directly, so there's not much Base* in that. Added the old name as alias as porting help for a while. Change-Id: I494a8a560b8996bcf74915ea3570b504df6a6b4c Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -203,14 +203,14 @@ DebuggerRunConfigurationAspect::DebuggerRunConfigurationAspect(Target *target)
|
||||
m_cppAspect->setValue(true);
|
||||
});
|
||||
|
||||
m_multiProcessAspect = new BaseBoolAspect;
|
||||
m_multiProcessAspect = new BoolAspect;
|
||||
m_multiProcessAspect->setSettingsKey("RunConfiguration.UseMultiProcess");
|
||||
m_multiProcessAspect->setLabel(tr("Enable Debugging of Subprocesses"),
|
||||
BaseBoolAspect::LabelPlacement::AtCheckBox);
|
||||
BoolAspect::LabelPlacement::AtCheckBox);
|
||||
|
||||
m_overrideStartupAspect = new BaseStringAspect;
|
||||
m_overrideStartupAspect = new StringAspect;
|
||||
m_overrideStartupAspect->setSettingsKey("RunConfiguration.OverrideDebuggerStartup");
|
||||
m_overrideStartupAspect->setDisplayStyle(BaseStringAspect::TextEditDisplay);
|
||||
m_overrideStartupAspect->setDisplayStyle(StringAspect::TextEditDisplay);
|
||||
m_overrideStartupAspect->setLabelText(tr("Additional startup commands:"));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user