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.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/mimelib/mimelib/mailbox.h b/mimelib/mimelib/mailbox.h
index f118e38e..9c472c48 100644
--- a/mimelib/mimelib/mailbox.h
+++ b/mimelib/mimelib/mailbox.h
@@ -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 tqparent but no child nodes.
-//. Its tqparent node must be a {\tt DwField}, a {\tt DwAddressList}, or a
+//. 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
//. {\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 tqparent to {\tt NULL}.
+ //. and sets its parent to {\tt NULL}.
//.
//. The second constructor is the copy constructor, which performs
//. a deep copy of {\tt aMailbox}.
- //. The tqparent of the new {\tt DwMailbox} is set to {\tt NULL}.
+ //. The parent 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 tqparent.
+ //. object's string representation and sets {\tt aParent} as its parent.
//. 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 tqparent node of the {\tt DwMailbox} object
+ //. {\tt aMailbox}. The parent node of the {\tt DwMailbox} object
//. is not changed.
virtual void Parse();