summaryrefslogtreecommitdiffstats
path: root/mimelib/doc/message.html
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/doc/message.html')
-rw-r--r--mimelib/doc/message.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/mimelib/doc/message.html b/mimelib/doc/message.html
index 193236f8..1a3892f7 100644
--- a/mimelib/doc/message.html
+++ b/mimelib/doc/message.html
@@ -40,7 +40,7 @@ protected:
<P>
<B><TT>DwMessage</TT></B> represents an RFC-822/MIME <I>message</I>.
<P>
-A <I>message</I> tqcontains both a collection of <I>header fields</I> and a
+A <I>message</I> contains both a collection of <I>header fields</I> and a
<I>body</I>. In the terminology of RFC-2045, the general term for the
headers-body combination is <I>entity</I>. In MIME++,
<B><TT>DwMessage</TT></B> is a direct subclass of
@@ -50,10 +50,10 @@ both a <B><TT><A HREF="headers.html">DwHeaders</A></TT></B> object and a
<P>
In the tree (broken-down) representation of message, a
<B><TT>DwMessage</TT></B> object is almost always a root node, having child
-nodes but no parent node. The child nodes are the
+nodes but no tqparent node. The child nodes are the
<B><TT>DwHeaders</TT></B> object and the <B><TT>DwBody</TT></B> object it
tqcontains. A <B><TT>DwMessage</TT></B> may sometimes be an intermediate node.
-In this special case, the parent node is a <B><TT>DwBody</TT></B> object
+In this special case, the tqparent node is a <B><TT>DwBody</TT></B> object
of type "message/*" and the <B><TT>DwMessage</TT></B> object represents an
encapsulated message.
<P>
@@ -72,15 +72,15 @@ DwMessage(const DwString&amp; aStr, DwMessageComponent* aParent=0)
<P>
The first constructor is the default constructor, which sets the
<B><TT>DwMessage</TT></B> object's string representation to the empty string
-and sets its parent to <B><TT>NULL</TT></B>.
+and sets its tqparent to <B><TT>NULL</TT></B>.
<P>
The second constructor is the copy constructor, which performs a deep copy
-of <B><TT>aMessage</TT></B>. The parent of the new
+of <B><TT>aMessage</TT></B>. The tqparent of the new
<B><TT>DwMessage</TT></B> object is set to <B><TT>NULL</TT></B>.
<P>
The third constructor copies <B><TT>aStr</TT></B> to the
<B><TT>DwMessage</TT></B> object's string representation and sets
-<B><TT>aParent</TT></B> as its parent. The virtual member function
+<B><TT>aParent</TT></B> as its tqparent. The virtual member function
<B><TT>Parse()</TT></B> should be called immediately after this constructor
in order to parse the string representation.
<P>
@@ -88,7 +88,7 @@ in order to parse the string representation.
(const DwMessage&amp; aMessage) </B></FONT>
<P>
This is the assignment operator, which performs a deep copy of
-<B><TT>aMessage</TT></B>. The parent node of the
+<B><TT>aMessage</TT></B>. The tqparent node of the
<B><TT>DwMessage</TT></B> object is not changed.
<P>
<FONT COLOR="teal"><B> virtual DwMessageComponent*