summaryrefslogtreecommitdiffstats
path: root/src/designer/src/lib/shared/qdesigner_introspection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/designer/src/lib/shared/qdesigner_introspection.cpp')
-rw-r--r--src/designer/src/lib/shared/qdesigner_introspection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/designer/src/lib/shared/qdesigner_introspection.cpp b/src/designer/src/lib/shared/qdesigner_introspection.cpp
index a2dfd037f..3001d6b76 100644
--- a/src/designer/src/lib/shared/qdesigner_introspection.cpp
+++ b/src/designer/src/lib/shared/qdesigner_introspection.cpp
@@ -283,13 +283,13 @@ namespace {
const qdesigner_internal::QDesignerIntrospection *m_introspection;
const QMetaObject *m_metaObject;
- typedef QVector<QDesignerMetaEnumInterface *> Enumerators;
+ using Enumerators = QVector<QDesignerMetaEnumInterface *>;
Enumerators m_enumerators;
- typedef QVector<QDesignerMetaMethodInterface *> Methods;
+ using Methods = QVector<QDesignerMetaMethodInterface *>;
Methods m_methods;
- typedef QVector<QDesignerMetaPropertyInterface *> Properties;
+ using Properties = QVector<QDesignerMetaPropertyInterface *>;
Properties m_properties;
QDesignerMetaPropertyInterface *m_userProperty;