fix crash on querying an unexistant property from the outside

This commit is contained in:
Oswald Buddenhagen
2010-06-24 18:57:07 +02:00
parent 99f807c842
commit 4c74b0b973

View File

@@ -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)