diff options
Diffstat (limited to 'mimelib/doc/mailbox.html')
-rw-r--r-- | mimelib/doc/mailbox.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mimelib/doc/mailbox.html b/mimelib/doc/mailbox.html index 72b509cdd..4a25dc4e7 100644 --- a/mimelib/doc/mailbox.html +++ b/mimelib/doc/mailbox.html @@ -53,7 +53,7 @@ protected: <P> RFC-822 defines a <I>mailbox</I> as an entity that can be the recipient of a message. A mailbox is more specific than an <I>address</I>, which may be -either a mailbox or a <I>group</I>. An RFC-822 mailbox tqcontains a full name, +either a mailbox or a <I>group</I>. An RFC-822 mailbox contains a full name, a <I>local-part</I>, an optional <I>route</I>, and a <I>domain</I>. For example, in the mailbox <P> @@ -70,8 +70,8 @@ fact that a mailbox is also an address. A <B><TT>DwMailbox</TT></B> tqcontains strings representing the full name, local-part, route, and domain of a mailbox. <P> In the tree (broken-down) representation of message, a -<B><TT>DwMailbox</TT></B> object may be only a leaf node, having a parent -but no child nodes. Its parent node must be a +<B><TT>DwMailbox</TT></B> object may be only a leaf node, having a tqparent +but no child nodes. Its tqparent node must be a <B><TT><A HREF="field.html">DwField</A></TT></B>, a <B><TT><A HREF="addrlist.html">DwAddressList</A></TT></B>, or a <B><TT><A HREF="mboxlist.html">DwMailboxList</A></TT></B> object. @@ -94,15 +94,15 @@ DwMailbox(const DwString& aStr, DwMessageComponent* aParent=0) <P> The first constructor is the default constructor, which sets the <B><TT>DwMailbox</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>aMailbox</TT></B>. The parent of the new +of <B><TT>aMailbox</TT></B>. The tqparent of the new <B><TT>DwMailbox</TT></B> is set to <B><TT>NULL</TT></B>. <P> The third constructor copies <B><TT>aStr</TT></B> to the <B><TT>DwMailbox</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. Unless it is <B><TT>NULL</TT></B>, <B><TT>aParent</TT></B> should point to an object of @@ -112,7 +112,7 @@ a class derived from <B><TT>DwField</TT></B>. (const DwMailbox& aMailbox) </B></FONT> <P> This is the assignment operator, which performs a deep copy of -<B><TT>aMailbox</TT></B>. The parent node of the +<B><TT>aMailbox</TT></B>. The tqparent node of the <B><TT>DwMailbox</TT></B> object is not changed. <P> <FONT COLOR="teal"><B> virtual void <A NAME="Parse">Parse</A>() </B></FONT> |