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.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/mimelib/mimelib/field.h b/mimelib/mimelib/field.h
index eac95494..f53c2b02 100644
--- a/mimelib/mimelib/field.h
+++ b/mimelib/mimelib/field.h
@@ -51,8 +51,8 @@ class DwFieldBody;
//. (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 tqparent node and a single
-//. child node. The tqparent node is the {\tt DwHeaders} object that contains
+//. object is always an intermediate node, having a parent node and a single
+//. child node. The parent node is the {\tt DwHeaders} object that contains
//. it. The child node is the {\tt DwFieldBody} object it contains.
//.
//. 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 tqparent {\tt DwHeaders} object. To get the next {\tt DwField}
+//. by its parent {\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 tqparent to {\tt NULL}, and sets its {\tt DwFieldBody}
+ //. string, set its parent 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 tqparent of the new {\tt DwField} object is set to {\tt NULL}.
+ //. The parent 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 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
@@ -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 tqparent node of the {\tt DwField} object
+ //. {\tt aField}. The parent node of the {\tt DwField} object
//. is not changed.
virtual void Parse();