summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmllexicalhandler.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-23 12:42:20 +0900
commitb35e0845dc9b3c8b9a5e52a682c769f383933fae (patch)
treee4eeca8f6fe0ca87e774be98eabf89b4c7fca347 /doc/man/man3/tqxmllexicalhandler.3qt
parent1ba13366a7a377d50b9e8df9044ce11d8209f98c (diff)
downloadtqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.tar.gz
tqt3-b35e0845dc9b3c8b9a5e52a682c769f383933fae.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqxmllexicalhandler.3qt')
-rw-r--r--doc/man/man3/tqxmllexicalhandler.3qt22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/man/man3/tqxmllexicalhandler.3qt b/doc/man/man3/tqxmllexicalhandler.3qt
index 31ea0aad..7b9b5712 100644
--- a/doc/man/man3/tqxmllexicalhandler.3qt
+++ b/doc/man/man3/tqxmllexicalhandler.3qt
@@ -18,16 +18,16 @@ Inherited by QXmlDefaultHandler.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "virtual bool \fBstartDTD\fR ( const QString & name, const QString & publicId, const QString & systemId ) = 0"
+.BI "virtual bool \fBstartDTD\fR ( const TQString & name, const TQString & publicId, const TQString & systemId ) = 0"
.br
.ti -1c
.BI "virtual bool \fBendDTD\fR () = 0"
.br
.ti -1c
-.BI "virtual bool \fBstartEntity\fR ( const QString & name ) = 0"
+.BI "virtual bool \fBstartEntity\fR ( const TQString & name ) = 0"
.br
.ti -1c
-.BI "virtual bool \fBendEntity\fR ( const QString & name ) = 0"
+.BI "virtual bool \fBendEntity\fR ( const TQString & name ) = 0"
.br
.ti -1c
.BI "virtual bool \fBstartCDATA\fR () = 0"
@@ -36,10 +36,10 @@ Inherited by QXmlDefaultHandler.
.BI "virtual bool \fBendCDATA\fR () = 0"
.br
.ti -1c
-.BI "virtual bool \fBcomment\fR ( const QString & ch ) = 0"
+.BI "virtual bool \fBcomment\fR ( const TQString & ch ) = 0"
.br
.ti -1c
-.BI "virtual QString \fBerrorString\fR () = 0"
+.BI "virtual TQString \fBerrorString\fR () = 0"
.br
.in -1c
.SH DESCRIPTION
@@ -57,7 +57,7 @@ See also the Introduction to SAX2.
.PP
See also QXmlDTDHandler, QXmlDeclHandler, QXmlContentHandler, QXmlEntityResolver, QXmlErrorHandler, and XML.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "bool QXmlLexicalHandler::comment ( const QString & ch )\fC [pure virtual]\fR"
+.SH "bool QXmlLexicalHandler::comment ( const TQString & ch )\fC [pure virtual]\fR"
The reader calls this function to report an XML comment anywhere in the document. It reports the text of the comment in \fIch\fR.
.PP
If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
@@ -73,7 +73,7 @@ The reader calls this function to report the end of a DTD declaration, if any.
If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also startDTD().
-.SH "bool QXmlLexicalHandler::endEntity ( const QString & name )\fC [pure virtual]\fR"
+.SH "bool QXmlLexicalHandler::endEntity ( const TQString & name )\fC [pure virtual]\fR"
The reader calls this function to report the end of an entity called \fIname\fR.
.PP
For every startEntity() call, there is a corresponding endEntity() call. The calls to startEntity() and endEntity() are properly nested.
@@ -81,7 +81,7 @@ For every startEntity() call, there is a corresponding endEntity() call. The cal
If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also startEntity(), QXmlContentHandler::skippedEntity(), and QXmlSimpleReader::setFeature().
-.SH "QString QXmlLexicalHandler::errorString ()\fC [pure virtual]\fR"
+.SH "TQString QXmlLexicalHandler::errorString ()\fC [pure virtual]\fR"
The reader calls this function to get an error string if any of the handler functions returns FALSE.
.SH "bool QXmlLexicalHandler::startCDATA ()\fC [pure virtual]\fR"
The reader calls this function to report the start of a CDATA section. The content of the CDATA section is reported through the QXmlContentHandler::characters() function. This function is intended only to report the boundary.
@@ -89,17 +89,17 @@ The reader calls this function to report the start of a CDATA section. The conte
If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also endCDATA().
-.SH "bool QXmlLexicalHandler::startDTD ( const QString & name, const QString & publicId, const QString & systemId )\fC [pure virtual]\fR"
+.SH "bool QXmlLexicalHandler::startDTD ( const TQString & name, const TQString & publicId, const TQString & systemId )\fC [pure virtual]\fR"
The reader calls this function to report the start of a DTD declaration, if any. It reports the name of the document type in \fIname\fR, the public identifier in \fIpublicId\fR and the system identifier in \fIsystemId\fR.
.PP
-If the public identifier is missing, \fIpublicId\fR is set to QString::null. If the system identifier is missing, \fIsystemId\fR is set to QString::null. Note that it is not valid XML to have a public identifier but no system identifier; in such cases a parse error will occur.
+If the public identifier is missing, \fIpublicId\fR is set to TQString::null. If the system identifier is missing, \fIsystemId\fR is set to TQString::null. Note that it is not valid XML to have a public identifier but no system identifier; in such cases a parse error will occur.
.PP
All declarations reported through QXmlDTDHandler or QXmlDeclHandler appear between the startDTD() and endDTD() calls.
.PP
If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also endDTD().
-.SH "bool QXmlLexicalHandler::startEntity ( const QString & name )\fC [pure virtual]\fR"
+.SH "bool QXmlLexicalHandler::startEntity ( const TQString & name )\fC [pure virtual]\fR"
The reader calls this function to report the start of an entity called \fIname\fR.
.PP
Note that if the entity is unknown, the reader reports it through QXmlContentHandler::skippedEntity() and not through this function.