summaryrefslogtreecommitdiffstats
path: root/mimelib/mimelib/field.h
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/mimelib/field.h')
-rw-r--r--mimelib/mimelib/field.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/mimelib/mimelib/field.h b/mimelib/mimelib/field.h
index 7cd8f97c..70f58466 100644
--- a/mimelib/mimelib/field.h
+++ b/mimelib/mimelib/field.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,15 +44,15 @@ class DwFieldBody;
//+ Name DwField -- Class representing a MIME header field
//+ Description
//. {\tt DwField} represents a header field as described in RFC-822.
-//. According to RFC-822, a field tqcontains a field name and a field body.
-//. In MIME++, a {\tt DwField} tqcontains three elements: a {\tt DwString}
-//. that tqcontains its field name, a {\tt DwString} that tqcontains its
-//. field body, and a {\tt DwFieldBody} object that tqcontains a broken-down
+//. According to RFC-822, a field contains a field name and a field body.
+//. In MIME++, a {\tt DwField} contains three elements: a {\tt DwString}
+//. that contains its field name, a {\tt DwString} that contains its
+//. field body, and a {\tt DwFieldBody} object that contains a broken-down
//. (that is, parsed) version of its field body.
//.
//. In the tree (broken-down) representation of message, a {\tt DwField}
-//. object is always an intermediate node, having a parent node and a single
-//. child node. The parent node is the {\tt DwHeaders} object that tqcontains
+//. object is always an intermediate node, having a tqparent node and a single
+//. child node. The tqparent node is the {\tt DwHeaders} object that tqcontains
//. it. The child node is the {\tt DwFieldBody} object it tqcontains.
//.
//. To get and set the field name, use the member functions
@@ -64,7 +64,7 @@ class DwFieldBody;
//.
//. A {\tt DwField} object can be included in a list of {\tt DwField}
//. objects; usually this is the list of {\tt DwField} objects maintained
-//. by its parent {\tt DwHeaders} object. To get the next {\tt DwField}
+//. by its tqparent {\tt DwHeaders} object. To get the next {\tt DwField}
//. object in a list, use the member function {\tt Next()}.
//=============================================================================
// Last updated 1997-08-23
@@ -82,15 +82,15 @@ public:
DwField(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwField} object's field name and field body to the empty
- //. string, set its parent to {\tt NULL}, and sets its {\tt DwFieldBody}
+ //. string, set its tqparent to {\tt NULL}, and sets its {\tt DwFieldBody}
//. object to {\tt NULL}.
//.
//. The second constructor is the copy constructor, which performs
//. a deep copy of {\tt aField}.
- //. The parent of the new {\tt DwField} object is set to {\tt NULL}.
+ //. The tqparent of the new {\tt DwField} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwField}
- //. 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
@@ -100,7 +100,7 @@ public:
const DwField& operator = (const DwField& aField);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aField}. The parent node of the {\tt DwField} object
+ //. {\tt aField}. The tqparent node of the {\tt DwField} object
//. is not changed.
virtual void Parse();
@@ -169,7 +169,7 @@ public:
void SetNext(const DwField* aField);
//. This {\it advanced} function sets {\tt aField} as the next field
//. following this field in the list of fields contained in the headers.
- //. Since {\tt DwHeaders} tqcontains member functions for adding
+ //. Since {\tt DwHeaders} contains member functions for adding
//. {\tt DwField} objects to its list, this function should be
//. avoided for most applications.