aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohannes Zellner <johannes.zellner@nokia.com>2011-11-09 11:30:25 +0100
committerQt by Nokia <qt-info@nokia.com>2011-11-10 01:21:26 +0100
commitcc6e177d86751e44694e092a15de3260f67def45 (patch)
tree0ec7899a07116baa23868e4eb48eb0d9e5791122 /src
parentac5743847fa8283201458ea0ae977df366b752ab (diff)
QStringLiteral does not build on arm gcc 4.5.2 in this condition
Replace QStringLiteral with QLatin1String Change-Id: I205bcd4f446e225c3f4054798e74dd0cb356e126 Reviewed-by: Robert Griebl <robert.griebl@nokia.com> Reviewed-by: Kalle Lehtonen <kalle.ju.lehtonen@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/declarative/util/qdeclarativepath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/util/qdeclarativepath.cpp b/src/declarative/util/qdeclarativepath.cpp
index 0b8349ccf1..bf3b46ee81 100644
--- a/src/declarative/util/qdeclarativepath.cpp
+++ b/src/declarative/util/qdeclarativepath.cpp
@@ -256,7 +256,7 @@ void QDeclarativePath::endpoint(QList<AttributePoint> &attributePoints, const QS
}
}
-static QString percentString(QStringLiteral("_qfx_percent"));
+static QString percentString(QLatin1String("_qfx_percent"));
void QDeclarativePath::processPath()
{