summaryrefslogtreecommitdiffstats
path: root/mimelib/mimelib/headers.h
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/mimelib/headers.h')
-rw-r--r--mimelib/mimelib/headers.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/mimelib/mimelib/headers.h b/mimelib/mimelib/headers.h
index a2011776..a34531bd 100644
--- a/mimelib/mimelib/headers.h
+++ b/mimelib/mimelib/headers.h
@@ -86,8 +86,8 @@ class DwText;
//. header fields.
//.
//. In the tree (broken-down) representation of a message, a {\tt DwHeaders}
-//. object is an intermediate node, having both a tqparent node and several
-//. child nodes. The tqparent node is the {\tt DwEntity} object that contains
+//. object is an intermediate node, having both a parent node and several
+//. child nodes. The parent node is the {\tt DwEntity} object that contains
//. it. The child nodes are the {\tt DwField} objects in the list it manages.
//. (See the man page for {\tt DwMessageComponent} for a discussion of
//. the tree representation of a message.)
@@ -138,14 +138,14 @@ public:
DwHeaders(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwHeaders} 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 aHeaders}.
- //. The tqparent of the new {\tt DwHeaders} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwHeaders} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwHeaders}
- //. 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
@@ -155,7 +155,7 @@ public:
const DwHeaders& operator = (const DwHeaders& aHeaders);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aHeaders}. The tqparent node of the {\tt DwHeaders} object
+ //. {\tt aHeaders}. The parent node of the {\tt DwHeaders} object
//. is not changed.
virtual void Parse();