From cc6e177d86751e44694e092a15de3260f67def45 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 9 Nov 2011 11:30:25 +0100 Subject: [PATCH] QStringLiteral does not build on arm gcc 4.5.2 in this condition Replace QStringLiteral with QLatin1String Change-Id: I205bcd4f446e225c3f4054798e74dd0cb356e126 Reviewed-by: Robert Griebl Reviewed-by: Kalle Lehtonen --- src/declarative/util/qdeclarativepath.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/declarative/util/qdeclarativepath.cpp b/src/declarative/util/qdeclarativepath.cpp index 0b8349c..bf3b46e 100644 --- a/src/declarative/util/qdeclarativepath.cpp +++ b/src/declarative/util/qdeclarativepath.cpp @@ -256,7 +256,7 @@ void QDeclarativePath::endpoint(QList &attributePoints, const QS } } -static QString percentString(QStringLiteral("_qfx_percent")); +static QString percentString(QLatin1String("_qfx_percent")); void QDeclarativePath::processPath() { -- 1.7.2.5