summaryrefslogtreecommitdiffstats
path: root/mimelib/mimelib/message.h
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/mimelib/message.h')
-rw-r--r--mimelib/mimelib/message.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/mimelib/mimelib/message.h b/mimelib/mimelib/message.h
index 3cfac701..73996664 100644
--- a/mimelib/mimelib/message.h
+++ b/mimelib/mimelib/message.h
@@ -43,10 +43,10 @@
//. a {\tt DwHeaders} object and a {\tt DwBody} object.
//.
//. In the tree (broken-down) representation of message, a {\tt DwMessage}
-//. object is almost always a root node, having child nodes but no tqparent node.
+//. object is almost always a root node, having child nodes but no parent node.
//. The child nodes are the {\tt DwHeaders} object and the {\tt DwBody} object
//. it contains. A {\tt DwMessage} may sometimes be an intermediate node. In
-//. this special case, the tqparent node is a {\tt DwBody} object of type
+//. this special case, the parent node is a {\tt DwBody} object of type
//. "message/*" and the {\tt DwMessage} object represents an encapsulated
//. message.
//.
@@ -66,14 +66,14 @@ public:
DwMessage(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMessage} 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 aMessage}.
- //. The tqparent of the new {\tt DwMessage} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwMessage} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwMessage}
- //. 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.
@@ -81,7 +81,7 @@ public:
const DwMessage& operator = (const DwMessage& aMessage);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aMessage}. The tqparent node of the {\tt DwMessage} object
+ //. {\tt aMessage}. The parent node of the {\tt DwMessage} object
//. is not changed.
virtual DwMessageComponent* Clone() const;