summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2012-04-11 18:45:57 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-11 19:14:43 +0200
commit7ff5fb610c665d8aa5eb5be431e96540caeb75ef (patch)
tree57734691e9b498ad286e628d1276a94cdf4da247 /src/xml
parent0fc74370b2565f8570d0b8b9be21016f78707de8 (diff)
Update Qt 5 to-do comment in QDom.
The change discussed in the comment doesn't have to be done in a major release if it isn't source-incompatible. Task-number: QTBUG-25103 Change-Id: I50036ab13611871ede01b7b7a17ce4c325476b00 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/dom/qdom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xml/dom/qdom.cpp b/src/xml/dom/qdom.cpp
index 04efe43e35..23a9db8e3a 100644
--- a/src/xml/dom/qdom.cpp
+++ b/src/xml/dom/qdom.cpp
@@ -4559,14 +4559,14 @@ void QDomElementPrivate::save(QTextStream& s, int depth, int indent) const
QString qName(name);
QString nsDecl(QLatin1String(""));
if (!namespaceURI.isNull()) {
- /** ### Qt 5:
+ /** ###
*
* If we still have QDom, optimize this so that we only declare namespaces that are not
* yet declared. We loose default namespace mappings, so maybe we should rather store
* the information that we get from startPrefixMapping()/endPrefixMapping() and use them.
* Modifications becomes more complex then, however.
*
- * We cannot do this during the Qt 4 series because it would require too invasive changes, and
+ * We cannot do this in a patch release because it would require too invasive changes, and
* hence possibly behavioral changes.
*/
if (prefix.isEmpty()) {