summaryrefslogtreecommitdiffstats
path: root/src/designer/src/lib/shared/qdesigner_utils_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/designer/src/lib/shared/qdesigner_utils_p.h')
-rw-r--r--src/designer/src/lib/shared/qdesigner_utils_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/designer/src/lib/shared/qdesigner_utils_p.h b/src/designer/src/lib/shared/qdesigner_utils_p.h
index 12374296b..4013ded7d 100644
--- a/src/designer/src/lib/shared/qdesigner_utils_p.h
+++ b/src/designer/src/lib/shared/qdesigner_utils_p.h
@@ -81,10 +81,10 @@ template <class IntType>
class MetaEnum
{
public:
- typedef QMap<QString, IntType> KeyToValueMap;
+ using KeyToValueMap = QMap<QString, IntType>;
MetaEnum(const QString &name, const QString &scope, const QString &separator);
- MetaEnum() {}
+ MetaEnum() = default;
void addKey(IntType value, const QString &name);
QString valueToKey(IntType value, bool *ok = nullptr) const;
@@ -273,8 +273,8 @@ class QDESIGNER_SHARED_EXPORT PropertySheetIconValue
PropertySheetIconValue themed() const;
PropertySheetIconValue unthemed() const;
- typedef QPair<QIcon::Mode, QIcon::State> ModeStateKey;
- typedef QMap<ModeStateKey, PropertySheetPixmapValue> ModeStateToPixmapMap;
+ using ModeStateKey = QPair<QIcon::Mode, QIcon::State>;
+ using ModeStateToPixmapMap = QMap<ModeStateKey, PropertySheetPixmapValue>;
const ModeStateToPixmapMap &paths() const;