diff options
author | Frans Englich <frans.englich@nokia.com> | 2009-07-20 09:29:00 (GMT) |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-07-20 09:53:58 (GMT) |
commit | 0f494029a61a2f9f31917be6e6e954b6bb606085 (patch) | |
tree | 964ca90d64c9b68624aa72dbfe36a66bc638e624 /src/xmlpatterns | |
parent | 2d6caf67f8e2a49c5c5516e6837ed6b2862130c2 (diff) | |
download | Qt-0f494029a61a2f9f31917be6e6e954b6bb606085.zip Qt-0f494029a61a2f9f31917be6e6e954b6bb606085.tar.gz Qt-0f494029a61a2f9f31917be6e6e954b6bb606085.tar.bz2 |
Fix assert in message handling.
Trivial fix. Reported by Michael Brasser.
Task-number: 258337
Reviewed-By: Peter Hartmann
Diffstat (limited to 'src/xmlpatterns')
-rw-r--r-- | src/xmlpatterns/data/qboolean.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmlpatterns/data/qboolean.cpp b/src/xmlpatterns/data/qboolean.cpp index 07562fd..bb4ece1 100644 --- a/src/xmlpatterns/data/qboolean.cpp +++ b/src/xmlpatterns/data/qboolean.cpp @@ -76,7 +76,7 @@ bool Boolean::evaluateEBV(const Item &first, { Q_ASSERT(context); context->error(QtXmlPatterns::tr("Effective Boolean Value cannot be calculated for a sequence " - "containing two or more atomic values."), + "containing two or more atomic values."), ReportContext::FORG0006, QSourceLocation()); return false; |