diff options
author | Michele Calgaro <[email protected]> | 2023-09-23 12:42:20 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-09-24 20:14:25 +0900 |
commit | d73937a9f779e2aafa6c392f94c9c29aa32b78fd (patch) | |
tree | e2c52ad435e8cca696acae34b1f451e934675a64 /doc/man/man3/tqxmldtdhandler.3qt | |
parent | eb42871e999672a8fad5793733c58be05928c8ea (diff) | |
download | tqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.tar.gz tqt3-d73937a9f779e2aafa6c392f94c9c29aa32b78fd.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit b35e0845dc9b3c8b9a5e52a682c769f383933fae)
Diffstat (limited to 'doc/man/man3/tqxmldtdhandler.3qt')
-rw-r--r-- | doc/man/man3/tqxmldtdhandler.3qt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqxmldtdhandler.3qt b/doc/man/man3/tqxmldtdhandler.3qt index ece683cc4..b4401ba18 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. |