summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmldeclhandler.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/tqxmldeclhandler.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/tqxmldeclhandler.3qt')
-rw-r--r--doc/man/man3/tqxmldeclhandler.3qt20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/man3/tqxmldeclhandler.3qt b/doc/man/man3/tqxmldeclhandler.3qt
index 2e8ad30bb..c2de08024 100644
--- a/doc/man/man3/tqxmldeclhandler.3qt
+++ b/doc/man/man3/tqxmldeclhandler.3qt
@@ -18,16 +18,16 @@ Inherited by QXmlDefaultHandler.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "virtual bool \fBattributeDecl\fR ( const QString & eName, const QString & aName, const QString & type, const QString & valueDefault, const QString & value ) = 0"
+.BI "virtual bool \fBattributeDecl\fR ( const TQString & eName, const TQString & aName, const TQString & type, const TQString & valueDefault, const TQString & value ) = 0"
.br
.ti -1c
-.BI "virtual bool \fBinternalEntityDecl\fR ( const QString & name, const QString & value ) = 0"
+.BI "virtual bool \fBinternalEntityDecl\fR ( const TQString & name, const TQString & value ) = 0"
.br
.ti -1c
-.BI "virtual bool \fBexternalEntityDecl\fR ( const QString & name, const QString & publicId, const QString & systemId ) = 0"
+.BI "virtual bool \fBexternalEntityDecl\fR ( const TQString & name, const TQString & publicId, const TQString & systemId ) = 0"
.br
.ti -1c
-.BI "virtual QString \fBerrorString\fR () = 0"
+.BI "virtual TQString \fBerrorString\fR () = 0"
.br
.in -1c
.SH DESCRIPTION
@@ -43,21 +43,21 @@ See also the Introduction to SAX2.
.PP
See also QXmlDTDHandler, QXmlContentHandler, QXmlEntityResolver, QXmlErrorHandler, QXmlLexicalHandler, and XML.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "bool QXmlDeclHandler::attributeDecl ( const QString & eName, const QString & aName, const QString & type, const QString & valueDefault, const QString & value )\fC [pure virtual]\fR"
+.SH "bool QXmlDeclHandler::attributeDecl ( const TQString & eName, const TQString & aName, const TQString & type, const TQString & valueDefault, const TQString & value )\fC [pure virtual]\fR"
The reader calls this function to report an attribute type declaration. Only the effective (first) declaration for an attribute is reported.
.PP
-The reader passes the name of the associated element in \fIeName\fR and the name of the attribute in \fIaName\fR. It passes a string that represents the attribute type in \fItype\fR and a string that represents the attribute default in \fIvalueDefault\fR. This string is one of "#IMPLIED", "#REQUIRED", "#FIXED" or QString::null (if none of the others applies). The reader passes the attribute's default value in \fIvalue\fR. If no default value is specified in the XML file, \fIvalue\fR is QString::null.
+The reader passes the name of the associated element in \fIeName\fR and the name of the attribute in \fIaName\fR. It passes a string that represents the attribute type in \fItype\fR and a string that represents the attribute default in \fIvalueDefault\fR. This string is one of "#IMPLIED", "#REQUIRED", "#FIXED" or TQString::null (if none of the others applies). The reader passes the attribute's default value in \fIvalue\fR. If no default value is specified in the XML file, \fIvalue\fR is TQString::null.
.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 "QString QXmlDeclHandler::errorString ()\fC [pure virtual]\fR"
+.SH "TQString QXmlDeclHandler::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 QXmlDeclHandler::externalEntityDecl ( const QString & name, const QString & publicId, const QString & systemId )\fC [pure virtual]\fR"
+.SH "bool QXmlDeclHandler::externalEntityDecl ( const TQString & name, const TQString & publicId, const TQString & systemId )\fC [pure virtual]\fR"
The reader calls this function to report a parsed external entity declaration. Only the effective (first) declaration for each entity is reported.
.PP
-The reader passes the name of the entity in \fIname\fR, the public identifier in \fIpublicId\fR and the system identifier in \fIsystemId\fR. If there is no public identifier specified, it passes QString::null in \fIpublicId\fR.
+The reader passes the name of the entity in \fIname\fR, the public identifier in \fIpublicId\fR and the system identifier in \fIsystemId\fR. If there is no public identifier specified, it passes TQString::null in \fIpublicId\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.
-.SH "bool QXmlDeclHandler::internalEntityDecl ( const QString & name, const QString & value )\fC [pure virtual]\fR"
+.SH "bool QXmlDeclHandler::internalEntityDecl ( const TQString & name, const TQString & value )\fC [pure virtual]\fR"
The reader calls this function to report an internal entity declaration. Only the effective (first) declaration is reported.
.PP
The reader passes the name of the entity in \fIname\fR and the value of the entity in \fIvalue\fR.