summaryrefslogtreecommitdiffstats
path: root/src/xmlpatterns/api/qxmlquery.cpp
diff options
context:
space:
mode:
authorHonglei Zhang <honglei.zhang@nokia.com>2012-03-21 13:33:00 +0200
committerQt by Nokia <qt-info@nokia.com>2012-03-22 11:03:31 +0100
commitccfe9a0190fd9cac0cf7d1af0b0bdc45380210da (patch)
treed4ba17559814c0e4c3c009abe466ac76a839c5d6 /src/xmlpatterns/api/qxmlquery.cpp
parentc58287d19fb34336c5c718ebf2fbebfb64e49630 (diff)
Update QtXmlPatterns module name in documentationqt-v5.0.0-alpha1
According to new module name convention, QtXmlPatterns is replaced with Qt XML Patterns in all documentation. Task-number: QTBUG-24775 Change-Id: I3bb3fffc29836dc1cd0e798dca48bfd9e2089821 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/xmlpatterns/api/qxmlquery.cpp')
-rw-r--r--src/xmlpatterns/api/qxmlquery.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmlpatterns/api/qxmlquery.cpp b/src/xmlpatterns/api/qxmlquery.cpp
index c3552d5e..b98d44d3 100644
--- a/src/xmlpatterns/api/qxmlquery.cpp
+++ b/src/xmlpatterns/api/qxmlquery.cpp
@@ -895,13 +895,13 @@ void QXmlQuery::setUriResolver(const QAbstractUriResolver *resolver)
/*!
Returns the query's URI resolver. If no URI resolver has been set,
- QtXmlPatterns will use the URIs in queries as they are.
+ Qt XML Patterns will use the URIs in queries as they are.
The URI resolver provides a level of abstraction, or \e{polymorphic
URIs}. A resolver can rewrite \e{logical} URIs to physical ones, or
it can translate obsolete or invalid URIs to valid ones.
- QtXmlPatterns calls the URI resolver for all URIs it encounters,
+ Qt XML Patterns calls the URI resolver for all URIs it encounters,
except for namespaces. Specifically, all builtin functions that deal
with URIs (\c{fn:doc()}, and \c{fn:doc-available()}).
@@ -910,7 +910,7 @@ void QXmlQuery::setUriResolver(const QAbstractUriResolver *resolver)
Rather than use the URI the user specified, the return value of
QAbstractUriResolver::resolve() will be used.
- When QtXmlPatterns calls QAbstractUriResolver::resolve() the
+ When Qt XML Patterns calls QAbstractUriResolver::resolve() the
absolute URI is the URI mandated by the XQuery language, and the
relative URI is the URI specified by the user.