summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmlerrorhandler.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-30 12:36:05 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-30 12:36:05 +0900
commit1702a6daff27f5d3e6fdac16962d1828df6ca270 (patch)
treeb451256c2cc2e22e895251bac6ec1e4bdfd40e09 /doc/man/man3/tqxmlerrorhandler.3qt
parent5fffa30386502b5423e45c2ed5e6af756b11c7b4 (diff)
downloadtqt3-1702a6daff27f5d3e6fdac16962d1828df6ca270.tar.gz
tqt3-1702a6daff27f5d3e6fdac16962d1828df6ca270.zip
Rename nt* dom and xml related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqxmlerrorhandler.3qt')
-rw-r--r--doc/man/man3/tqxmlerrorhandler.3qt30
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/man/man3/tqxmlerrorhandler.3qt b/doc/man/man3/tqxmlerrorhandler.3qt
index a928ba9f6..15f4cc73d 100644
--- a/doc/man/man3/tqxmlerrorhandler.3qt
+++ b/doc/man/man3/tqxmlerrorhandler.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QXmlErrorHandler 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQXmlErrorHandler 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license
.\" statement.
@@ -7,55 +7,55 @@
.ad l
.nh
.SH NAME
-QXmlErrorHandler \- Interface to report errors in XML data
+TQXmlErrorHandler \- Interface to report errors in XML data
.SH SYNOPSIS
All the functions in this class are reentrant when TQt is built with thread support.</p>
.PP
-\fC#include <ntqxml.h>\fR
+\fC#include <tqxml.h>\fR
.PP
-Inherited by QXmlDefaultHandler.
+Inherited by TQXmlDefaultHandler.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "virtual bool \fBwarning\fR ( const QXmlParseException & exception ) = 0"
+.BI "virtual bool \fBwarning\fR ( const TQXmlParseException & exception ) = 0"
.br
.ti -1c
-.BI "virtual bool \fBerror\fR ( const QXmlParseException & exception ) = 0"
+.BI "virtual bool \fBerror\fR ( const TQXmlParseException & exception ) = 0"
.br
.ti -1c
-.BI "virtual bool \fBfatalError\fR ( const QXmlParseException & exception ) = 0"
+.BI "virtual bool \fBfatalError\fR ( const TQXmlParseException & exception ) = 0"
.br
.ti -1c
.BI "virtual TQString \fBerrorString\fR () = 0"
.br
.in -1c
.SH DESCRIPTION
-The QXmlErrorHandler class provides an interface to report errors in XML data.
+The TQXmlErrorHandler class provides an interface to report errors in XML data.
.PP
If you want your application to report errors to the user or to perform customized error handling, you should subclass this class.
.PP
-You can set the error handler with QXmlReader::setErrorHandler().
+You can set the error handler with TQXmlReader::setErrorHandler().
.PP
Errors can be reported using warning(), error() and fatalError(), with the error text being reported with errorString().
.PP
See also the Introduction to SAX2.
.PP
-See also QXmlDTDHandler, QXmlDeclHandler, QXmlContentHandler, QXmlEntityResolver, QXmlLexicalHandler, and XML.
+See also TQXmlDTDHandler, TQXmlDeclHandler, TQXmlContentHandler, TQXmlEntityResolver, TQXmlLexicalHandler, and XML.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "bool QXmlErrorHandler::error ( const QXmlParseException & exception )\fC [pure virtual]\fR"
+.SH "bool TQXmlErrorHandler::error ( const TQXmlParseException & exception )\fC [pure virtual]\fR"
A reader might use this function to report a recoverable error. A recoverable error corresponds to the definiton of "error" in section 1.2 of the XML 1.0 specification. Details of the error are stored in \fIexception\fR.
.PP
The reader must continue to provide normal parsing events after invoking this function.
.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 "TQString QXmlErrorHandler::errorString ()\fC [pure virtual]\fR"
+.SH "TQString TQXmlErrorHandler::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 QXmlErrorHandler::fatalError ( const QXmlParseException & exception )\fC [pure virtual]\fR"
+.SH "bool TQXmlErrorHandler::fatalError ( const TQXmlParseException & exception )\fC [pure virtual]\fR"
A reader must use this function to report a non-recoverable error. Details of the error are stored in \fIexception\fR.
.PP
If this function returns TRUE the reader might try to go on parsing and reporting further errors; but no regular parsing events are reported.
-.SH "bool QXmlErrorHandler::warning ( const QXmlParseException & exception )\fC [pure virtual]\fR"
+.SH "bool TQXmlErrorHandler::warning ( const TQXmlParseException & exception )\fC [pure virtual]\fR"
A reader might use this function to report a warning. Warnings are conditions that are not errors or fatal errors as defined by the XML 1.0 specification. Details of the warning are stored in \fIexception\fR.
.PP
If this function returns FALSE the reader stops parsing and
@@ -63,7 +63,7 @@ reports an error. The reader uses the function errorString() to
get the error message.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qxmlerrorhandler.html
+.BR http://doc.trolltech.com/tqxmlerrorhandler.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the