aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/boot2qt
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-08-13 09:16:00 +0200
committerhjk <hjk@qt.io>2020-08-14 07:35:43 +0000
commit51e7bce10974143dad04d312117a28138d16ee74 (patch)
tree6717f38446e7785603dad8555039acf4c32e2f15 /src/plugins/boot2qt
parente62044aa29b14b5db9229ec5b72cd4c4a7fa64c6 (diff)
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>
Diffstat (limited to 'src/plugins/boot2qt')
-rw-r--r--src/plugins/boot2qt/qdbmakedefaultappstep.cpp2
-rw-r--r--src/plugins/boot2qt/qdbrunconfiguration.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/boot2qt/qdbmakedefaultappstep.cpp b/src/plugins/boot2qt/qdbmakedefaultappstep.cpp
index c43fa0970cb..c371704b8d1 100644
--- a/src/plugins/boot2qt/qdbmakedefaultappstep.cpp
+++ b/src/plugins/boot2qt/qdbmakedefaultappstep.cpp
@@ -54,7 +54,7 @@ QdbMakeDefaultAppStep::QdbMakeDefaultAppStep(BuildStepList *bsl, Utils::Id id)
auto service = createDeployService<QdbMakeDefaultAppService>();
- auto selection = addAspect<BaseSelectionAspect>();
+ auto selection = addAspect<SelectionAspect>();
selection->setSettingsKey("QdbMakeDefaultDeployStep.MakeDefault");
selection->addOption(tr("Set this application to start by default"));
selection->addOption(tr("Reset default application"));
diff --git a/src/plugins/boot2qt/qdbrunconfiguration.cpp b/src/plugins/boot2qt/qdbrunconfiguration.cpp
index e47460e8f4a..331cd864ca9 100644
--- a/src/plugins/boot2qt/qdbrunconfiguration.cpp
+++ b/src/plugins/boot2qt/qdbrunconfiguration.cpp
@@ -44,7 +44,7 @@ namespace Internal {
// FullCommandLineAspect
-class FullCommandLineAspect : public BaseStringAspect
+class FullCommandLineAspect : public StringAspect
{
Q_DECLARE_TR_FUNCTIONS(Qdb::Internal::QdbRunConfiguration);