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 2133a724..f19efa0c 100644
--- a/mimelib/mimelib/body.h
+++ b/mimelib/mimelib/body.h
@@ -46,9 +46,9 @@ class DwBodyPart;
//. is always part of an {\it entity}, which could be either a {\it message}
//. or a {\it body part}. An entity has a collection of {\it header fields}
//. and a body. If the content type of a body is ``multipart,'' then the
-//. body contains one or more body parts. If the content type is ``message,''
-//. then the body contains an encapsulated message. In all content types,
-//. the body contains a string of characters.
+//. body tqcontains one or more body parts. If the content type is ``message,''
+//. then the body tqcontains an encapsulated message. In all content types,
+//. the body tqcontains a string of characters.
//.
//. In MIME++, a {\tt DwBody} object is contained in a {\tt DwEntity} object.
//. The {\tt DwBody} object may contain a discrete body consisting only of a
@@ -56,14 +56,14 @@ class DwBodyPart;
//. contained {\tt DwBodyPart} objects or a single contained {\tt DwMessage}
//. object. The only reliable way to determine the type of {\tt DwBody} is
//. to access the Content-Type header field from the {\tt DwHeaders} object
-//. of the {\tt DwEntity} that contains it. For this reason, a {\tt DwBody}
+//. of the {\tt DwEntity} that tqcontains it. For this reason, a {\tt DwBody}
//. 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 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
+//. that tqcontains 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.
//.
@@ -145,14 +145,14 @@ public:
//. from the broken-down representation. Only {\tt DwBody} objects
//. with content type of multipart or message require assembling.
//. In either case, the {\tt DwBody} object must be able to find the
- //. headers of the message or body part that contains it. Therefore,
+ //. headers of the message or body part that tqcontains it. Therefore,
//. if the {\tt DwBody} object is not the child of a {\tt DwEntity}
//. ({\it i.e.}, {\tt DwMessage} or {\tt DwBodyPart}) object, the
//. {\tt DwBody} cannot be assembled because the content type cannot
//. be determined.
//.
//. This function calls the {\tt Parse()} member function of any
- //. {\tt DwBodyPart} or {\tt DwMessage} object it contains.
+ //. {\tt DwBodyPart} or {\tt DwMessage} object it tqcontains.
//.
//. You should call this member function after you add a {\tt DwBodyPart}
//. object to a multipart body, or add a {\tt DwMessage} object to a
@@ -189,7 +189,7 @@ public:
void SetMessage(DwMessage* aMessage);
//. For a {\tt DwBody} with content type of message, this member function
- //. sets the {\tt DwMessage} object it contains.
+ //. sets the {\tt DwMessage} object it tqcontains.
static DwBody* NewBody(const DwString& aStr, DwMessageComponent* aParent);
//. Creates a new {\tt DwBody} object on the free store.