summaryrefslogtreecommitdiffstats
path: root/mimelib/mimelib/entity.h
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/mimelib/entity.h')
-rw-r--r--mimelib/mimelib/entity.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/mimelib/mimelib/entity.h b/mimelib/mimelib/entity.h
index 1f2c3f6d..e555f6ad 100644
--- a/mimelib/mimelib/entity.h
+++ b/mimelib/mimelib/entity.h
@@ -48,10 +48,10 @@ class DwBody;
//. a {\tt DwBody} object.
//.
//. In the tree (broken-down) representation of message, a {\tt DwEntity}
-//. object may be either a root node, having child nodes but no tqparent
-//. node, or an intermediate node, having both a tqparent node and child nodes.
+//. object may be either a root node, having child nodes but no parent
+//. node, or an intermediate node, having both a parent node and child nodes.
//. A {\tt DwEntity} object that is a root node must also be a {\tt DwMessage}
-//. object. If a {\tt DwEntity} object is an intermediate node, its tqparent
+//. object. If a {\tt DwEntity} object is an intermediate node, its parent
//. must be a {\tt DwBody} object. The child nodes of a {\tt DwEntity}
//. object are the {\tt DwHeaders} and {\tt DwBody} objects it contains.
//.
@@ -75,14 +75,14 @@ public:
DwEntity(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwEntity} 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 aEntity}.
- //. The tqparent of the new {\tt DwEntity} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwEntity} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwEntity}
- //. 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
@@ -92,7 +92,7 @@ public:
const DwEntity& operator = (const DwEntity& aEntity);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aEntity}. The tqparent node of the {\tt DwEntity} object
+ //. {\tt aEntity}. The parent node of the {\tt DwEntity} object
//. is not changed.
virtual void Parse();