diff options
Diffstat (limited to 'mimelib/doc/fieldbdy.html')
-rw-r--r-- | mimelib/doc/fieldbdy.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mimelib/doc/fieldbdy.html b/mimelib/doc/fieldbdy.html index 1da30ab54..856fd5330 100644 --- a/mimelib/doc/fieldbdy.html +++ b/mimelib/doc/fieldbdy.html @@ -50,9 +50,9 @@ grammar specified by RFC-822. It is an abstract base class that defines the interface common to all structured field bodies. <P> In the tree (broken-down) representation of a message, a -<B><TT>DwFieldBody</TT></B> object may be either a leaf node, having a tqparent -but no child nodes, or an intermediate node, having a tqparent and one or more -child nodes. The tqparent node is the +<B><TT>DwFieldBody</TT></B> object may be either a leaf node, having a parent +but no child nodes, or an intermediate node, having a parent and one or more +child nodes. The parent node is the <B><TT><A HREF="field.html">DwField</A></TT></B> object that contains it. Child nodes, if present, depend on the particular subclass of <B><TT>DwFieldBody</TT></B> that is instantiated. A @@ -80,15 +80,15 @@ DwFieldBody(const DwString& aStr, DwMessageComponent* aParent=0) <P> The first constructor is the default constructor, which sets the <B><TT>DwFieldBody</TT></B> object's string representation to the empty string -and sets its tqparent to <B><TT>NULL</TT></B>. +and sets its parent to <B><TT>NULL</TT></B>. <P> The second constructor is the copy constructor, which performs a deep copy -of <B><TT>aFieldBody</TT></B>. The tqparent of the new +of <B><TT>aFieldBody</TT></B>. The parent of the new <B><TT>DwFieldBody</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>DwFieldBody</TT></B> object's string representation and sets -<B><TT>aParent</TT></B> as its tqparent. The virtual member function +<B><TT>aParent</TT></B> as its parent. The virtual member function <B><TT>Parse()</TT></B> should be called immediately after this constructor in order to parse the string representation. Unless it is <B><TT>NULL</TT></B>, <B><TT>aParent</TT></B> should point to an object of @@ -98,7 +98,7 @@ a class derived from <B><TT>DwField</TT></B>. (const DwFieldBody& aFieldBody) </B></FONT> <P> This is the assignment operator, which performs a deep copy of -<B><TT>aFieldBody</TT></B>. The tqparent node of the +<B><TT>aFieldBody</TT></B>. The parent node of the <B><TT>DwFieldBody</TT></B> object is not changed. <P> <FONT COLOR="teal"><B> void <A NAME="SetOffset">SetOffset</A>(int aOffset) |