diff options
author | hjk <hjk@qt.io> | 2023-04-25 10:15:07 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2023-04-25 13:31:25 +0000 |
commit | 8cf500c5bc2d2171f80f392d325ddcf5107e184c (patch) | |
tree | 20880282e81400d2f0aa70e327070ddc0b69f5fb /src/plugins/cppeditor/cppcodemodelinspectordialog.cpp | |
parent | 68c92f6dfa2f431e784b3aebf38bc3f76a7cb0ce (diff) | |
download | qt-creator-8cf500c5bc2d2171f80f392d325ddcf5107e184c.tar.gz |
Utils: Make Layouting a top level namespace
The whole machinery is now almost only layoutbuilder.{h,cpp},
mostly independent of the rest of Utils. Idea is to finish the
separation to make it stand-alone usable also outside creator.
Change-Id: I958aa667d17ae26b21209f22412309c5307a579c
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/cppeditor/cppcodemodelinspectordialog.cpp')
-rw-r--r-- | src/plugins/cppeditor/cppcodemodelinspectordialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cppcodemodelinspectordialog.cpp b/src/plugins/cppeditor/cppcodemodelinspectordialog.cpp index 8b9cba0d63..9d5137b938 100644 --- a/src/plugins/cppeditor/cppcodemodelinspectordialog.cpp +++ b/src/plugins/cppeditor/cppcodemodelinspectordialog.cpp @@ -1484,7 +1484,7 @@ CppCodeModelInspectorDialog::CppCodeModelInspectorDialog(QWidget *parent) Column { Form { QString("Sn&apshot:"), m_snapshotSelector }, m_snapshotView, - }.emerge(Utils::Layouting::WithoutMargins), + }.emerge(Layouting::WithoutMargins), m_docTab, }, } |