From 4c74b0b973a11319c9730e130cf37aae0b215811 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Date: Thu, 24 Jun 2010 18:57:07 +0200 Subject: [PATCH] fix crash on querying an unexistant property from the outside --- src/shared/proparser/profileevaluator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/proparser/profileevaluator.cpp b/src/shared/proparser/profileevaluator.cpp index 1074083fb23..f57d60e6e5a 100644 --- a/src/shared/proparser/profileevaluator.cpp +++ b/src/shared/proparser/profileevaluator.cpp @@ -3203,7 +3203,7 @@ bool ProFileEvaluator::accept(ProFile *pro) QString ProFileEvaluator::propertyValue(const QString &name) const { - return d->propertyValue(name); + return d->propertyValue(name, false); } void ProFileEvaluator::setCumulative(bool on) -- GitLab