diff options
author | hjk <[email protected]> | 2023-08-23 16:11:48 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2023-08-23 14:30:50 +0000 |
commit | dc6b40a5c008405606fc22092a9361786a047dda (patch) | |
tree | 9e66c2d6e20d0c57f6447271e9ec26927a2b46bc /src/plugins/qmljstools/qmljscodestylepreferences.h | |
parent | 55b5b8a975eb806594d1d0357293f40c27f01c06 (diff) |
Use Utils::Storage instead of QVariantMap in a few places
Change-Id: I02833cf2bc3caaadc22ff93ae530e4aebe4c3868
Reviewed-by: Marcus Tillmanns <[email protected]>
Diffstat (limited to 'src/plugins/qmljstools/qmljscodestylepreferences.h')
-rw-r--r-- | src/plugins/qmljstools/qmljscodestylepreferences.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qmljstools/qmljscodestylepreferences.h b/src/plugins/qmljstools/qmljscodestylepreferences.h index da52de879d9..db0acc0d738 100644 --- a/src/plugins/qmljstools/qmljscodestylepreferences.h +++ b/src/plugins/qmljstools/qmljscodestylepreferences.h @@ -25,8 +25,8 @@ public: // tracks parent hierarchy until currentParentSettings is null QmlJSCodeStyleSettings currentCodeStyleSettings() const; - QVariantMap toMap() const override; - void fromMap(const QVariantMap &map) override; + Utils::Storage toMap() const override; + void fromMap(const Utils::Storage &map) override; public slots: void setCodeStyleSettings(const QmlJSCodeStyleSettings &data); |