aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/incredibuild
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-01-19 13:51:52 +0100
committerhjk <hjk@qt.io>2023-01-20 12:44:30 +0000
commit642c593481a3abbd8f3965d9e9aa8cbb7e519af7 (patch)
treea7842294cdc1774198f12faff2aaadf7116b23e3 /src/plugins/incredibuild
parenta37f2ae3a8b15794d26f9771be8e89402e8fc5d3 (diff)
Utils: Flatten LayoutBuilder related hierarchies
Originally the idea was to only expose LayoutBuilder, but we are getting more and more related items. Be consequent now, and have everything in Utils::Layouting, but not in nested classes. Change-Id: Ic0f98595882e5c60a25c30ec52df4a0ea79bc0ca Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/incredibuild')
-rw-r--r--src/plugins/incredibuild/commandbuilderaspect.cpp2
-rw-r--r--src/plugins/incredibuild/commandbuilderaspect.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/incredibuild/commandbuilderaspect.cpp b/src/plugins/incredibuild/commandbuilderaspect.cpp
index 4e63a848024..6a16cabc6d7 100644
--- a/src/plugins/incredibuild/commandbuilderaspect.cpp
+++ b/src/plugins/incredibuild/commandbuilderaspect.cpp
@@ -110,7 +110,7 @@ void CommandBuilderAspectPrivate::tryToMigrate()
}
}
-void CommandBuilderAspect::addToLayout(LayoutBuilder &builder)
+void CommandBuilderAspect::addToLayout(Layouting::LayoutBuilder &builder)
{
if (!d->commandBuilder) {
d->commandBuilder = new QComboBox;
diff --git a/src/plugins/incredibuild/commandbuilderaspect.h b/src/plugins/incredibuild/commandbuilderaspect.h
index c1d1a4db7b1..7c6d04c93b6 100644
--- a/src/plugins/incredibuild/commandbuilderaspect.h
+++ b/src/plugins/incredibuild/commandbuilderaspect.h
@@ -23,7 +23,7 @@ public:
QString fullCommandFlag(bool keepJobNum) const;
private:
- void addToLayout(Utils::LayoutBuilder &builder) final;
+ void addToLayout(Utils::Layouting::LayoutBuilder &builder) final;
void fromMap(const QVariantMap &map) final;
void toMap(QVariantMap &map) const final;