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:
@@ -379,10 +379,10 @@ void IosBuildSettingsWidget::updateWarningText()
|
||||
IosBuildConfiguration::IosBuildConfiguration(Target *target, Utils::Id id)
|
||||
: QmakeBuildConfiguration(target, id)
|
||||
{
|
||||
m_signingIdentifier = addAspect<BaseStringAspect>();
|
||||
m_signingIdentifier = addAspect<StringAspect>();
|
||||
m_signingIdentifier->setSettingsKey(signingIdentifierKey);
|
||||
|
||||
m_autoManagedSigning = addAspect<BaseBoolAspect>();
|
||||
m_autoManagedSigning = addAspect<BoolAspect>();
|
||||
m_autoManagedSigning->setDefaultValue(true);
|
||||
m_autoManagedSigning->setSettingsKey(autoManagedSigningKey);
|
||||
}
|
||||
|
||||
@@ -46,8 +46,8 @@ private:
|
||||
|
||||
void updateQmakeCommand();
|
||||
|
||||
ProjectExplorer::BaseStringAspect *m_signingIdentifier = nullptr;
|
||||
ProjectExplorer::BaseBoolAspect *m_autoManagedSigning = nullptr;
|
||||
ProjectExplorer::StringAspect *m_signingIdentifier = nullptr;
|
||||
ProjectExplorer::BoolAspect *m_autoManagedSigning = nullptr;
|
||||
};
|
||||
|
||||
class IosBuildConfigurationFactory : public QmakeProjectManager::QmakeBuildConfigurationFactory
|
||||
|
||||
@@ -106,7 +106,7 @@ IosRunConfiguration::IosRunConfiguration(Target *target, Utils::Id id)
|
||||
: RunConfiguration(target, id)
|
||||
{
|
||||
auto executableAspect = addAspect<ExecutableAspect>();
|
||||
executableAspect->setDisplayStyle(BaseStringAspect::LabelDisplay);
|
||||
executableAspect->setDisplayStyle(StringAspect::LabelDisplay);
|
||||
|
||||
addAspect<ArgumentsAspect>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user