diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-07-02 03:11:14 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-07-02 03:11:14 (GMT) |
commit | dafd625842e2c66551857810a3660c534962746e (patch) | |
tree | ba8029030ad5f744af4633547cf866b2ac9bee1a /src/declarative/qml/qmlmetaproperty.cpp | |
parent | c9525d561fa05f0914546315fc33d8942b80742a (diff) | |
download | Qt-dafd625842e2c66551857810a3660c534962746e.zip Qt-dafd625842e2c66551857810a3660c534962746e.tar.gz Qt-dafd625842e2c66551857810a3660c534962746e.tar.bz2 |
Fix warnings.
Diffstat (limited to 'src/declarative/qml/qmlmetaproperty.cpp')
-rw-r--r-- | src/declarative/qml/qmlmetaproperty.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlmetaproperty.cpp b/src/declarative/qml/qmlmetaproperty.cpp index 292aacd..a2138c9 100644 --- a/src/declarative/qml/qmlmetaproperty.cpp +++ b/src/declarative/qml/qmlmetaproperty.cpp @@ -1043,7 +1043,7 @@ QMetaMethod QmlMetaProperty::method() const */ QmlMetaProperty QmlMetaProperty::createProperty(QObject *obj, const QString &name) { - QStringList path = name.split('.'); + QStringList path = name.split(QLatin1Char('.')); QObject *object = obj; |