summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:04:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:04:08 -0600
commite02e31c8b9d854cd62cbe9799228f6e08e882773 (patch)
tree53303c981d0b20e03c5a2fc8e959fa74adcb90d1 /src/xml
parent143f194af098d44bf0dd1ebb29e59f30ce48d523 (diff)
downloadtqt3-e02e31c8b9d854cd62cbe9799228f6e08e882773.tar.gz
tqt3-e02e31c8b9d854cd62cbe9799228f6e08e882773.zip
Sync with latest script
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/qdom.cpp6
-rw-r--r--src/xml/qdom.h2
-rw-r--r--src/xml/qsvgdevice.cpp4
-rw-r--r--src/xml/qsvgdevice_p.h2
-rw-r--r--src/xml/qxml.cpp8
-rw-r--r--src/xml/qxml.h2
6 files changed, 12 insertions, 12 deletions
diff --git a/src/xml/qdom.cpp b/src/xml/qdom.cpp
index 00d2ce7e..b4d891a9 100644
--- a/src/xml/qdom.cpp
+++ b/src/xml/qdom.cpp
@@ -18,7 +18,7 @@
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
-** Public Licensing retquirements will be met:
+** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
@@ -925,7 +925,7 @@ uint TQDomNodeListPrivate::length() const
\ingroup xml-tools
Lists can be obtained by TQDomDocument::elementsByTagName() and
- TQDomNode::childNodes(). The Document Object Model (DOM) retquires
+ TQDomNode::childNodes(). The Document Object Model (DOM) requires
these lists to be "live": whenever you change the underlying
document, the contents of the list will get updated.
@@ -6239,7 +6239,7 @@ bool TQDomDocument::setContent( const TQString& text, bool namespaceProcessing,
/*!
This function parses the XML document from the byte array \a
buffer and sets it as the content of the document. It tries to
- detect the encoding of the document as retquired by the XML
+ detect the encoding of the document as required by the XML
specification.
If \a namespaceProcessing is TRUE, the parser recognizes
diff --git a/src/xml/qdom.h b/src/xml/qdom.h
index 804e8dd9..2cd1e3f5 100644
--- a/src/xml/qdom.h
+++ b/src/xml/qdom.h
@@ -18,7 +18,7 @@
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
-** Public Licensing retquirements will be met:
+** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
diff --git a/src/xml/qsvgdevice.cpp b/src/xml/qsvgdevice.cpp
index 7c0699d5..df9b5510 100644
--- a/src/xml/qsvgdevice.cpp
+++ b/src/xml/qsvgdevice.cpp
@@ -16,7 +16,7 @@
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
-** Public Licensing retquirements will be met:
+** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
@@ -1378,7 +1378,7 @@ void TQSvgDevice::drawPath( const TQString &data )
}
}
- // read in the retquired number of arguments
+ // read in the required number of arguments
const int maxArgs = 7;
double arg[ maxArgs ];
int numArgs = cmdArgs[ cmd ];
diff --git a/src/xml/qsvgdevice_p.h b/src/xml/qsvgdevice_p.h
index 67bd8617..1dd58f28 100644
--- a/src/xml/qsvgdevice_p.h
+++ b/src/xml/qsvgdevice_p.h
@@ -18,7 +18,7 @@
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
-** Public Licensing retquirements will be met:
+** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
diff --git a/src/xml/qxml.cpp b/src/xml/qxml.cpp
index fb09a89f..34dbeeb2 100644
--- a/src/xml/qxml.cpp
+++ b/src/xml/qxml.cpp
@@ -18,7 +18,7 @@
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
-** Public Licensing retquirements will be met:
+** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
@@ -1547,7 +1547,7 @@ TQString TQXmlInputSource::fromRawData( const TQByteArray &data, bool beginning
with TQXmlReader::setDTDHandler().
Note that this interface includes only those DTD events that the
- XML recommendation retquires processors to report, i.e. notation
+ XML recommendation requires processors to report, i.e. notation
and unparsed entity declarations using notationDecl() and
unparsedEntityDecl() respectively.
@@ -5625,9 +5625,9 @@ bool TQXmlSimpleReader::parseElementDecl()
{
const signed char Init = 0;
const signed char Elem = 1; // parse the beginning string
- const signed char Ws1 = 2; // whitespace retquired
+ const signed char Ws1 = 2; // whitespace required
const signed char Nam = 3; // parse Name
- const signed char Ws2 = 4; // whitespace retquired
+ const signed char Ws2 = 4; // whitespace required
const signed char Empty = 5; // read EMPTY
const signed char Any = 6; // read ANY
const signed char Cont = 7; // read contentspec (except ANY or EMPTY)
diff --git a/src/xml/qxml.h b/src/xml/qxml.h
index 4cb0b921..4bdceeea 100644
--- a/src/xml/qxml.h
+++ b/src/xml/qxml.h
@@ -18,7 +18,7 @@
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
-** Public Licensing retquirements will be met:
+** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information: