summaryrefslogtreecommitdiffstats
path: root/mimelib/doc/msgcmp.html
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/doc/msgcmp.html')
-rw-r--r--mimelib/doc/msgcmp.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/mimelib/doc/msgcmp.html b/mimelib/doc/msgcmp.html
index 4eae3993..2e8a3da7 100644
--- a/mimelib/doc/msgcmp.html
+++ b/mimelib/doc/msgcmp.html
@@ -130,19 +130,19 @@ These features are the following:
<B><TT>SetModified()</TT></B> which forces the is-modified flag to be set.
<P>
<LI>
- A tqparent. Most message components are part of another component. A collection
+ A parent. Most message components are part of another component. A collection
of headers is part of a message or body part, a header field is part of a
collection of headers, a field-body is part of a header field, and so on.
- The tqparent of a component is the component that contains it. This tree structure
- is important, since a component's tqparent must be parsed before the component
+ The parent of a component is the component that contains it. This tree structure
+ is important, since a component's parent must be parsed before the component
can be. Also, a component's string representation must be assembled before
- its tqparent's. To maintain consistency in the tree, whenever a component's
- is-modified flag is set, the component notifies its tqparent to also set its
+ its parent's. To maintain consistency in the tree, whenever a component's
+ is-modified flag is set, the component notifies its parent to also set its
is-modified flag. In this way, an is-modified flag set anywhere in the tree
always propagates up to the root component.
<P>
<LI>
- Children. The preceding discussion about a component's tqparent is relevant
+ Children. The preceding discussion about a component's parent is relevant
to an understanding of a component's tqchildren. A component's parse method
calls the parse methods of its tqchildren after it has executed its own parse
method (and, in some cases, created all of its tqchildren). Also, a component
@@ -163,15 +163,15 @@ DwMessageComponent(const DwString&amp; aStr, DwMessageComponent* aParent=0)
<P>
The first constructor is the default constructor, which sets the
<B><TT>DwMessageComponent</TT></B> object's string representation to the
-empty string and sets its tqparent to NULL.
+empty string and sets its parent to NULL.
<P>
The second constructor is the copy constructor, which performs a deep copy
-of <B><TT>aCmp</TT></B>. The tqparent of the new
+of <B><TT>aCmp</TT></B>. The parent of the new
<B><TT>DwMessageComponent</TT></B> object is set to NULL.
<P>
The third constructor copies <B><TT>aStr</TT></B> to the new
<B><TT>DwMessageComponent</TT></B> object's string representation and sets
-<B><TT>aParent</TT></B> as its tqparent. In typical cases, the virtual member
+<B><TT>aParent</TT></B> as its parent. In typical cases, the virtual member
function <B><TT>Parse()</TT></B> should be called immediately after this
constructor to parse the new <B><TT>DwMessageComponent</TT></B> object and
all of its tqchildren into their broken-down representations.
@@ -241,14 +241,14 @@ string representation are consistent. See also
<FONT COLOR="teal"><B> DwMessageComponent* <A NAME="Parent">Parent</A>()
</B></FONT>
<P>
-Returns the <B><TT>DwMessageComponent</TT></B> object that is the tqparent
+Returns the <B><TT>DwMessageComponent</TT></B> object that is the parent
of this object.
<P>
<FONT COLOR="teal"><B> void
<A NAME="SetParent">SetParent</A>(DwMessageComponent* aParent) </B></FONT>
<P>
Sets <B><TT>aParent</TT></B> as the <B><TT>DwMessageComponent</TT></B> object's
-tqparent.
+parent.
<P>
<FONT COLOR="teal"><B> DwBool <A NAME="IsModified">IsModified</A>() const
</B></FONT>
@@ -260,7 +260,7 @@ Returns 1 if the is-modified flag is set for this
</B></FONT>
<P>
Sets the is-modified (dirty) flag for this
-<B><TT>DwMessageComponent</TT></B> object and notifies the object's tqparent
+<B><TT>DwMessageComponent</TT></B> object and notifies the object's parent
to also set its is-modified flag.
<P>
<FONT COLOR="teal"><B> int <A NAME="ClassId">ClassId</A>() const </B></FONT>