aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp')
-rw-r--r--tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp b/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
index 12c3032eda..b353d23539 100644
--- a/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
+++ b/tests/auto/qml/qqmlsettings/tst_qqmlsettings.cpp
@@ -88,10 +88,7 @@ class CppObject : public QObject
public:
CppObject(QObject *parent = nullptr) : QObject(parent),
- m_intProperty(123),
- m_boolProperty(true),
- m_realProperty(1.23),
- m_doubleProperty(3.45),
+
m_stringProperty("foo"),
m_urlProperty("http://www.qt-project.org"),
m_objectProperty(keyValueMap("foo", "bar")),
@@ -127,10 +124,10 @@ signals:
void fontPropertyChanged(const QFont &arg);
private:
- int m_intProperty;
- bool m_boolProperty;
- qreal m_realProperty;
- double m_doubleProperty;
+ int m_intProperty = 123;
+ bool m_boolProperty = true;
+ qreal m_realProperty = 1.23;
+ double m_doubleProperty = 3.45;
QString m_stringProperty;
QUrl m_urlProperty;
QVariant m_varProperty;