From 356648b7f486f7cc57c8c91a89f0c7f7af64043a Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@nokia.com> Date: Wed, 2 Jun 2010 21:51:27 +0200 Subject: [PATCH] Compile fix. Reviewed-by: Oswald Buddenhagen --- src/shared/proparser/profileevaluator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/shared/proparser/profileevaluator.cpp b/src/shared/proparser/profileevaluator.cpp index 178919291bf..a7ad13bbf00 100644 --- a/src/shared/proparser/profileevaluator.cpp +++ b/src/shared/proparser/profileevaluator.cpp @@ -2128,11 +2128,11 @@ ProFileEvaluator::Private::VisitReturn ProFileEvaluator::Private::visitProFile(P // We can't resolve symlinks as they do on Unix, so configure.exe puts // the source of the qmake.conf at the end of the default/qmake.conf in // the QMAKESPEC_ORG variable. - const QStringList &spec_org = - m_option->base_valuemap.value(QLatin1String("QMAKESPEC_ORIGINAL")); + const ProStringList &spec_org = + m_option->base_valuemap.value(ProString("QMAKESPEC_ORIGINAL")); if (!spec_org.isEmpty()) m_option->qmakespec_name = - IoUtils::fileName(spec_org.first()).toString(); + IoUtils::fileName(spec_org.first().toQString()).toString(); #endif } } -- GitLab