summaryrefslogtreecommitdiffstats
path: root/mimelib/mimelib/body.h
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/mimelib/body.h')
-rw-r--r--mimelib/mimelib/body.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/mimelib/mimelib/body.h b/mimelib/mimelib/body.h
index 129c19dc..654812d4 100644
--- a/mimelib/mimelib/body.h
+++ b/mimelib/mimelib/body.h
@@ -60,9 +60,9 @@ class DwBodyPart;
//. should always be part of a {\tt DwEntity}.
//.
//. In the tree (broken-down) representation of a message, a {\tt DwBody}
-//. object can be an intermediate node, having both a tqparent node and
-//. one or more child nodes, or a leaf node, having a tqparent but no child
-//. nodes. In either case, the tqparent node is the {\tt DwEntity} object
+//. object can be an intermediate node, having both a parent node and
+//. one or more child nodes, or a leaf node, having a parent but no child
+//. nodes. In either case, the parent node is the {\tt DwEntity} object
//. that contains it. If it is an intermediate node, it must be of type
//. multipart with {\tt DwBodyPart} objects as child nodes, or of type
//. message with a single {\tt DwMessage} object as its child node.
@@ -96,14 +96,14 @@ public:
DwBody(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwBody} 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 aBody}.
- //. The tqparent of the new {\tt DwBody} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwBody} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwBody}
- //. 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
@@ -113,7 +113,7 @@ public:
const DwBody& operator = (const DwBody& aBody);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aBody}. The tqparent node of the {\tt DwBody} object
+ //. {\tt aBody}. The parent node of the {\tt DwBody} object
//. is not changed.
virtual void Parse();
@@ -127,7 +127,7 @@ public:
//. the parse method does nothing. This member function calls the
//. {\tt Parse()} member function of any objects it creates.
//.
- //. Note: If the {\tt DwBody} object has no tqparent node -- that is,
+ //. Note: If the {\tt DwBody} object has no parent node -- that is,
//. it is not contained by a {\tt DwEntity} object -- then the parse
//. method does nothing, since it is unable to determine the type of
//. body.