summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmldtdhandler.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqxmldtdhandler.3qt')
-rw-r--r--doc/man/man3/tqxmldtdhandler.3qt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqxmldtdhandler.3qt b/doc/man/man3/tqxmldtdhandler.3qt
index ece683cc..b4401ba1 100644
--- a/doc/man/man3/tqxmldtdhandler.3qt
+++ b/doc/man/man3/tqxmldtdhandler.3qt
@@ -18,13 +18,13 @@ Inherited by QXmlDefaultHandler.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "virtual bool \fBnotationDecl\fR ( const QString & name, const QString & publicId, const QString & systemId ) = 0"
+.BI "virtual bool \fBnotationDecl\fR ( const TQString & name, const TQString & publicId, const TQString & systemId ) = 0"
.br
.ti -1c
-.BI "virtual bool \fBunparsedEntityDecl\fR ( const QString & name, const QString & publicId, const QString & systemId, const QString & notationName ) = 0"
+.BI "virtual bool \fBunparsedEntityDecl\fR ( const TQString & name, const TQString & publicId, const TQString & systemId, const TQString & notationName ) = 0"
.br
.ti -1c
-.BI "virtual QString \fBerrorString\fR () = 0"
+.BI "virtual TQString \fBerrorString\fR () = 0"
.br
.in -1c
.SH DESCRIPTION
@@ -38,15 +38,15 @@ See also the Introduction to SAX2.
.PP
See also QXmlDeclHandler, QXmlContentHandler, QXmlEntityResolver, QXmlErrorHandler, QXmlLexicalHandler, and XML.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QString QXmlDTDHandler::errorString ()\fC [pure virtual]\fR"
+.SH "TQString QXmlDTDHandler::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 QXmlDTDHandler::notationDecl ( const QString & name, const QString & publicId, const QString & systemId )\fC [pure virtual]\fR"
+.SH "bool QXmlDTDHandler::notationDecl ( const TQString & name, const TQString & publicId, const TQString & systemId )\fC [pure virtual]\fR"
The reader calls this function when it has parsed a notation declaration.
.PP
The argument \fIname\fR is the notation name, \fIpublicId\fR is the notation's public identifier and \fIsystemId\fR is the notation's system identifier.
.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.
-.SH "bool QXmlDTDHandler::unparsedEntityDecl ( const QString & name, const QString & publicId, const QString & systemId, const QString & notationName )\fC [pure virtual]\fR"
+.SH "bool QXmlDTDHandler::unparsedEntityDecl ( const TQString & name, const TQString & publicId, const TQString & systemId, const TQString & notationName )\fC [pure virtual]\fR"
The reader calls this function when it finds an unparsed entity declaration.
.PP
The argument \fIname\fR is the unparsed entity's name, \fIpublicId\fR is the entity's public identifier, \fIsystemId\fR is the entity's system identifier and \fInotationName\fR is the name of the associated notation.