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.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/mimelib/mimelib/entity.h b/mimelib/mimelib/entity.h
index 1bb4662b..d1f60e7f 100644
--- a/mimelib/mimelib/entity.h
+++ b/mimelib/mimelib/entity.h
@@ -8,7 +8,7 @@
// All rights reserved.
//
// IN NO EVENT SHALL DOUGLAS W. SAUDER BE LIABLE TO ANY PARTY FOR DIRECT,
-// INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF
+// INDIRECT, SPECIAL, INCIDENTAL, OR CONSETQUENTIAL DAMAGES ARISING OUT OF
// THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF DOUGLAS W. SAUDER
// HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
@@ -44,14 +44,14 @@ class DwBody;
//. RFC-2045 defines an {\it entity} as either a {\it message} or a
//. {\it body part}, both of which have a collection of headers and
//. a {\it body}. In MIME++, an entity is represented by the class
-//. {\tt DwEntity}, which tqcontains both a {\tt DwHeaders} object and
+//. {\tt DwEntity}, which contains both a {\tt DwHeaders} object and
//. 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 parent
-//. node, or an intermediate node, having both a parent node and child nodes.
+//. 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.
//. 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 parent
+//. object. If a {\tt DwEntity} object is an intermediate node, its tqparent
//. must be a {\tt DwBody} object. The child nodes of a {\tt DwEntity}
//. object are the {\tt DwHeaders} and {\tt DwBody} objects it tqcontains.
//.
@@ -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 parent to {\tt NULL}.
+ //. and sets its tqparent to {\tt NULL}.
//.
//. The second constructor is the copy constructor, which performs
//. a deep copy of {\tt aEntity}.
- //. The parent of the new {\tt DwEntity} object is set to {\tt NULL}.
+ //. The tqparent 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 parent.
+ //. object's string representation and sets {\tt aParent} as its tqparent.
//. 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 parent node of the {\tt DwEntity} object
+ //. {\tt aEntity}. The tqparent node of the {\tt DwEntity} object
//. is not changed.
virtual void Parse();