summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdomcharacterdata.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdomcharacterdata.3qt')
-rw-r--r--doc/man/man3/tqdomcharacterdata.3qt62
1 files changed, 31 insertions, 31 deletions
diff --git a/doc/man/man3/tqdomcharacterdata.3qt b/doc/man/man3/tqdomcharacterdata.3qt
index b9a9a59d4..40511624b 100644
--- a/doc/man/man3/tqdomcharacterdata.3qt
+++ b/doc/man/man3/tqdomcharacterdata.3qt
@@ -1,5 +1,5 @@
'\" t
-.TH QDomCharacterData 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
+.TH TQDomCharacterData 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,29 +7,29 @@
.ad l
.nh
.SH NAME
-QDomCharacterData \- Represents a generic string in the DOM
+TQDomCharacterData \- Represents a generic string in the DOM
.SH SYNOPSIS
All the functions in this class are reentrant when TQt is built with thread support.</p>
.PP
-\fC#include <ntqdom.h>\fR
+\fC#include <tqdom.h>\fR
.PP
-Inherits QDomNode.
+Inherits TQDomNode.
.PP
-Inherited by QDomText and QDomComment.
+Inherited by TQDomText and TQDomComment.
.PP
.SS "Public Members"
.in +1c
.ti -1c
-.BI "\fBQDomCharacterData\fR ()"
+.BI "\fBTQDomCharacterData\fR ()"
.br
.ti -1c
-.BI "\fBQDomCharacterData\fR ( const QDomCharacterData & x )"
+.BI "\fBTQDomCharacterData\fR ( const TQDomCharacterData & x )"
.br
.ti -1c
-.BI "QDomCharacterData & \fBoperator=\fR ( const QDomCharacterData & x )"
+.BI "TQDomCharacterData & \fBoperator=\fR ( const TQDomCharacterData & x )"
.br
.ti -1c
-.BI "\fB~QDomCharacterData\fR ()"
+.BI "\fB~TQDomCharacterData\fR ()"
.br
.ti -1c
.BI "virtual TQString \fBsubstringData\fR ( unsigned long offset, unsigned long count )"
@@ -56,66 +56,66 @@ Inherited by QDomText and QDomComment.
.BI "virtual void \fBsetData\fR ( const TQString & v )"
.br
.ti -1c
-.BI "virtual QDomNode::NodeType \fBnodeType\fR () const"
+.BI "virtual TQDomNode::NodeType \fBnodeType\fR () const"
.br
.ti -1c
.BI "virtual bool \fBisCharacterData\fR () const"
.br
.in -1c
.SH DESCRIPTION
-The QDomCharacterData class represents a generic string in the DOM.
+The TQDomCharacterData class represents a generic string in the DOM.
.PP
-Character data as used in XML specifies a generic data string. More specialized versions of this class are QDomText, QDomComment and QDomCDATASection.
+Character data as used in XML specifies a generic data string. More specialized versions of this class are TQDomText, TQDomComment and TQDomCDATASection.
.PP
The data string is set with setData() and retrieved with data(). You can retrieve a portion of the data string using substringData(). Extra data can be appended with appendData(), or inserted with insertData(). Portions of the data string can be deleted with deleteData() or replaced with replaceData(). The length of the data string is returned by length().
.PP
The node type of the node containing this character data is returned by nodeType().
.PP
-See also QDomText, QDomComment, QDomCDATASection, and XML.
+See also TQDomText, TQDomComment, TQDomCDATASection, and XML.
.SH MEMBER FUNCTION DOCUMENTATION
-.SH "QDomCharacterData::QDomCharacterData ()"
+.SH "TQDomCharacterData::TQDomCharacterData ()"
Constructs an empty character data object.
-.SH "QDomCharacterData::QDomCharacterData ( const QDomCharacterData & x )"
+.SH "TQDomCharacterData::TQDomCharacterData ( const TQDomCharacterData & x )"
Constructs a copy of \fIx\fR.
.PP
The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().
-.SH "QDomCharacterData::~QDomCharacterData ()"
+.SH "TQDomCharacterData::~TQDomCharacterData ()"
Destroys the object and frees its resources.
-.SH "void QDomCharacterData::appendData ( const TQString & arg )\fC [virtual]\fR"
+.SH "void TQDomCharacterData::appendData ( const TQString & arg )\fC [virtual]\fR"
Appends the string \fIarg\fR to the stored string.
-.SH "TQString QDomCharacterData::data () const\fC [virtual]\fR"
+.SH "TQString TQDomCharacterData::data () const\fC [virtual]\fR"
Returns the string stored in this object.
.PP
If the node is a null node, it will return TQString::null.
-.SH "void QDomCharacterData::deleteData ( unsigned long offset, unsigned long count )\fC [virtual]\fR"
+.SH "void TQDomCharacterData::deleteData ( unsigned long offset, unsigned long count )\fC [virtual]\fR"
Deletes a substring of length \fIcount\fR from position \fIoffset\fR.
-.SH "void QDomCharacterData::insertData ( unsigned long offset, const TQString & arg )\fC [virtual]\fR"
+.SH "void TQDomCharacterData::insertData ( unsigned long offset, const TQString & arg )\fC [virtual]\fR"
Inserts the string \fIarg\fR into the stored string at position \fIoffset\fR.
-.SH "bool QDomCharacterData::isCharacterData () const\fC [virtual]\fR"
+.SH "bool TQDomCharacterData::isCharacterData () const\fC [virtual]\fR"
Returns TRUE.
.PP
-Reimplemented from QDomNode.
-.SH "uint QDomCharacterData::length () const\fC [virtual]\fR"
+Reimplemented from TQDomNode.
+.SH "uint TQDomCharacterData::length () const\fC [virtual]\fR"
Returns the length of the stored string.
-.SH "QDomNode::NodeType QDomCharacterData::nodeType () const\fC [virtual]\fR"
+.SH "TQDomNode::NodeType TQDomCharacterData::nodeType () const\fC [virtual]\fR"
Returns the type of node this object refers to (i.e. TextNode, CDATASectionNode, CommentNode or CharacterDataNode). For a null node CharacterDataNode is returned.
.PP
-Reimplemented from QDomNode.
+Reimplemented from TQDomNode.
.PP
-Reimplemented in QDomText and QDomComment.
-.SH "QDomCharacterData & QDomCharacterData::operator= ( const QDomCharacterData & x )"
+Reimplemented in TQDomText and TQDomComment.
+.SH "TQDomCharacterData & TQDomCharacterData::operator= ( const TQDomCharacterData & x )"
Assigns \fIx\fR to this character data.
.PP
The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode().
-.SH "void QDomCharacterData::replaceData ( unsigned long offset, unsigned long count, const TQString & arg )\fC [virtual]\fR"
+.SH "void TQDomCharacterData::replaceData ( unsigned long offset, unsigned long count, const TQString & arg )\fC [virtual]\fR"
Replaces the substring of length \fIcount\fR starting at position \fIoffset\fR with the string \fIarg\fR.
-.SH "void QDomCharacterData::setData ( const TQString & v )\fC [virtual]\fR"
+.SH "void TQDomCharacterData::setData ( const TQString & v )\fC [virtual]\fR"
Sets this object's string to \fIv\fR.
-.SH "TQString QDomCharacterData::substringData ( unsigned long offset, unsigned long count )\fC [virtual]\fR"
+.SH "TQString TQDomCharacterData::substringData ( unsigned long offset, unsigned long count )\fC [virtual]\fR"
Returns the substring of length \fIcount\fR from position \fIoffset\fR.
.SH "SEE ALSO"
-.BR http://doc.trolltech.com/qdomcharacterdata.html
+.BR http://doc.trolltech.com/tqdomcharacterdata.html
.BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the