summaryrefslogtreecommitdiffstats
path: root/mimelib/mimelib/mailbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/mimelib/mailbox.h')
-rw-r--r--mimelib/mimelib/mailbox.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/mimelib/mimelib/mailbox.h b/mimelib/mimelib/mailbox.h
index 2ef28258..0d158ecf 100644
--- a/mimelib/mimelib/mailbox.h
+++ b/mimelib/mimelib/mailbox.h
@@ -8,7 +8,7 @@
// All rights reserved.
//
// IN NO EVENT SHALL DOUGLAS W. SAUDER BE LIABLE TO ANY PARTY FOR DIRECT,
-// INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF
+// INDIRECT, SPECIAL, INCIDENTAL, OR CONSETQUENTIAL DAMAGES ARISING OUT OF
// THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF DOUGLAS W. SAUDER
// HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
@@ -58,8 +58,8 @@
//. of a mailbox.
//.
//. In the tree (broken-down) representation of message, a {\tt DwMailbox}
-//. object may be only a leaf node, having a parent but no child nodes.
-//. Its parent node must be a {\tt DwField}, a {\tt DwAddressList}, or a
+//. object may be only a leaf node, having a tqparent but no child nodes.
+//. Its tqparent node must be a {\tt DwField}, a {\tt DwAddressList}, or a
//. {\tt DwMailboxList} object.
//.
//. {\tt DwMailbox} has member functions for getting or setting the strings
@@ -85,14 +85,14 @@ public:
DwMailbox(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMailbox} object's string representation to the empty string
- //. and sets its parent to {\tt NULL}.
+ //. and sets its tqparent to {\tt NULL}.
//.
//. The second constructor is the copy constructor, which performs
//. a deep copy of {\tt aMailbox}.
- //. The parent of the new {\tt DwMailbox} is set to {\tt NULL}.
+ //. The tqparent of the new {\tt DwMailbox} is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwMailbox}
- //. object's string representation and sets {\tt aParent} as its parent.
+ //. object's string representation and sets {\tt aParent} as its tqparent.
//. The virtual member function {\tt Parse()} should be called immediately
//. after this constructor in order to parse the string representation.
//. Unless it is {\tt NULL}, {\tt aParent} should point to an object of a class
@@ -102,7 +102,7 @@ public:
const DwMailbox& operator = (const DwMailbox& aMailbox);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aMailbox}. The parent node of the {\tt DwMailbox} object
+ //. {\tt aMailbox}. The tqparent node of the {\tt DwMailbox} object
//. is not changed.
virtual void Parse();