diff options
author | Jason McDonald <jason.mcdonald@nokia.com> | 2009-08-12 05:26:23 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-08-12 05:26:23 (GMT) |
commit | 168ebe84e7b7234a4f51e7b3b6ac4f14b6766c20 (patch) | |
tree | 8428f893886a05ef2d12d73d8e0aba57b902a96a /src/xml/sax/qxml.cpp | |
parent | 812b3940012f3c04fb79b8fa8c4ac64ff8051dd4 (diff) | |
download | Qt-168ebe84e7b7234a4f51e7b3b6ac4f14b6766c20.zip Qt-168ebe84e7b7234a4f51e7b3b6ac4f14b6766c20.tar.gz Qt-168ebe84e7b7234a4f51e7b3b6ac4f14b6766c20.tar.bz2 |
Update URL's to use new domain.
Reviewed-by: Trust Me
Diffstat (limited to 'src/xml/sax/qxml.cpp')
-rw-r--r-- | src/xml/sax/qxml.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xml/sax/qxml.cpp b/src/xml/sax/qxml.cpp index e15cbf1..0f17231 100644 --- a/src/xml/sax/qxml.cpp +++ b/src/xml/sax/qxml.cpp @@ -3149,7 +3149,7 @@ bool QXmlSimpleReader::feature(const QString& name, bool *ok) const { const QXmlSimpleReaderPrivate *d = d_func(); - // Qt5 ###: Change these strings to qtsoftware.com + // Qt5 ###: Change these strings to qt.nokia.com if (ok != 0) *ok = true; if (name == QLatin1String("http://xml.org/sax/features/namespaces")) { @@ -3204,7 +3204,7 @@ bool QXmlSimpleReader::feature(const QString& name, bool *ok) const void QXmlSimpleReader::setFeature(const QString& name, bool enable) { Q_D(QXmlSimpleReader); - // Qt5 ###: Change these strings to qtsoftware.com + // Qt5 ###: Change these strings to qt.nokia.com if (name == QLatin1String("http://xml.org/sax/features/namespaces")) { d->useNamespaces = enable; } else if (name == QLatin1String("http://xml.org/sax/features/namespace-prefixes")) { @@ -3222,7 +3222,7 @@ void QXmlSimpleReader::setFeature(const QString& name, bool enable) */ bool QXmlSimpleReader::hasFeature(const QString& name) const { - // Qt5 ###: Change these strings to qtsoftware.com + // Qt5 ###: Change these strings to qt.nokia.com if (name == QLatin1String("http://xml.org/sax/features/namespaces") || name == QLatin1String("http://xml.org/sax/features/namespace-prefixes") || name == QLatin1String("http://trolltech.com/xml/features/report-whitespace-only-CharData") // Shouldn't change in Qt 4 |