summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlmetaproperty.cpp
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-07-02 03:11:14 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-07-02 03:11:14 (GMT)
commitdafd625842e2c66551857810a3660c534962746e (patch)
treeba8029030ad5f744af4633547cf866b2ac9bee1a /src/declarative/qml/qmlmetaproperty.cpp
parentc9525d561fa05f0914546315fc33d8942b80742a (diff)
downloadQt-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.cpp2
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;