summaryrefslogtreecommitdiffstats
path: root/mimelib/mimelib
diff options
context:
space:
mode:
Diffstat (limited to 'mimelib/mimelib')
-rw-r--r--mimelib/mimelib/address.h8
-rw-r--r--mimelib/mimelib/addrlist.h8
-rw-r--r--mimelib/mimelib/body.h16
-rw-r--r--mimelib/mimelib/bodypart.h8
-rw-r--r--mimelib/mimelib/datetime.h6
-rw-r--r--mimelib/mimelib/disptype.h10
-rw-r--r--mimelib/mimelib/entity.h14
-rw-r--r--mimelib/mimelib/field.h14
-rw-r--r--mimelib/mimelib/fieldbdy.h14
-rw-r--r--mimelib/mimelib/group.h12
-rw-r--r--mimelib/mimelib/headers.h12
-rw-r--r--mimelib/mimelib/mailbox.h12
-rw-r--r--mimelib/mimelib/mboxlist.h8
-rw-r--r--mimelib/mimelib/mechansm.h10
-rw-r--r--mimelib/mimelib/mediatyp.h10
-rw-r--r--mimelib/mimelib/message.h12
-rw-r--r--mimelib/mimelib/msgcmp.h24
-rw-r--r--mimelib/mimelib/msgid.h12
-rw-r--r--mimelib/mimelib/param.h8
-rw-r--r--mimelib/mimelib/text.h6
20 files changed, 112 insertions, 112 deletions
diff --git a/mimelib/mimelib/address.h b/mimelib/mimelib/address.h
index dbd657ba..f4ec3a7d 100644
--- a/mimelib/mimelib/address.h
+++ b/mimelib/mimelib/address.h
@@ -96,14 +96,14 @@ protected:
DwAddress(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwAddress} 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 copies the
//. string representation and all attributes from {\tt aAddress}.
- //. The tqparent of the new {\tt DwAddress} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwAddress} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwAddress}
- //. 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
@@ -111,7 +111,7 @@ protected:
const DwAddress& operator = (const DwAddress& aAddr);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aAddr}. The tqparent node of the {\tt DwAddress} object
+ //. {\tt aAddr}. The parent node of the {\tt DwAddress} object
//. is not changed.
int mIsValid;
diff --git a/mimelib/mimelib/addrlist.h b/mimelib/mimelib/addrlist.h
index c02e3897..5db64725 100644
--- a/mimelib/mimelib/addrlist.h
+++ b/mimelib/mimelib/addrlist.h
@@ -51,14 +51,14 @@ public:
DwAddressList(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwAddressList} 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 copies the
//. string representation and all {\tt DwAddress} objects from {\tt aList}.
- //. The tqparent of the new {\tt DwAddressList} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwAddressList} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwAddressList}
- //. 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
@@ -68,7 +68,7 @@ public:
const DwAddressList& operator = (const DwAddressList& aList);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aList}. The tqparent node of the {\tt DwAddressList} object
+ //. {\tt aList}. The parent node of the {\tt DwAddressList} object
//. is not changed.
virtual void Parse();
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.
diff --git a/mimelib/mimelib/bodypart.h b/mimelib/mimelib/bodypart.h
index 7a9b3275..d2cda16e 100644
--- a/mimelib/mimelib/bodypart.h
+++ b/mimelib/mimelib/bodypart.h
@@ -69,14 +69,14 @@ public:
DwBodyPart(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwBodyPart} 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 aPart}.
- //. The tqparent of the new {\tt DwBodyPart} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwBodyPart} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwBodyPart}
- //. 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
@@ -86,7 +86,7 @@ public:
const DwBodyPart& operator = (const DwBodyPart& aPart);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aPart}. The tqparent node of the {\tt DwBodyPart} object
+ //. {\tt aPart}. The parent node of the {\tt DwBodyPart} object
//. is not changed.
virtual DwMessageComponent* Clone() const;
diff --git a/mimelib/mimelib/datetime.h b/mimelib/mimelib/datetime.h
index ef888d57..da7f6259 100644
--- a/mimelib/mimelib/datetime.h
+++ b/mimelib/mimelib/datetime.h
@@ -57,11 +57,11 @@ public:
//. The first constructor is the default constructor, which assigns
//. the current date and time as reported by the operating system.
//.
- //. The second constructor is the copy constructor. The tqparent of
+ //. The second constructor is the copy constructor. The parent of
//. the new {\tt DwDateTime} object is set to {\tt NULL}.
//.
//. The third constructor sets {\tt aStr} as the {\tt DwDateTime}
- //. 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 after
//. this constructor to extract the date and time information from the
//. string representation. Unless it is {\tt NULL}, {\tt aParent} should
@@ -89,7 +89,7 @@ public:
//. It should be called whenever one of the object's attributes
//. is changed in order to assemble the string representation from
//. its broken-down representation. It will be called
- //. automatically for this object by the tqparent object's
+ //. automatically for this object by the parent object's
//. {\tt Assemble()} member function if the is-modified flag is set.
//.
//. This function clears the is-modified flag.
diff --git a/mimelib/mimelib/disptype.h b/mimelib/mimelib/disptype.h
index ad12e8c4..e1e90b3b 100644
--- a/mimelib/mimelib/disptype.h
+++ b/mimelib/mimelib/disptype.h
@@ -73,15 +73,15 @@ public:
DwDispositionType(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwDispositionType} object's string representation to the empty
- //. string and sets its tqparent to {\tt NULL}.
+ //. string and sets its parent to {\tt NULL}.
//.
//. The second constructor is the copy constructor, which performs
//. deep copy of {\tt aDispType}.
- //. The tqparent of the new {\tt DwDispositionType} object is set to
+ //. The parent of the new {\tt DwDispositionType} object is set to
//. {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwDispositionType}
- //. 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
@@ -91,7 +91,7 @@ public:
const DwDispositionType& operator = (const DwDispositionType& aDispType);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aDispType}. The tqparent node of the {\tt DwDipositionType}
+ //. {\tt aDispType}. The parent node of the {\tt DwDipositionType}
//. object is not changed.
virtual void Parse();
@@ -109,7 +109,7 @@ public:
//. It should be called whenever one of the object's attributes
//. is changed in order to assemble the string representation from
//. its broken-down representation. It will be called
- //. automatically for this object by the tqparent object's
+ //. automatically for this object by the parent object's
//. {\tt Assemble()} member function if the is-modified flag is set.
//.
//. This function clears the is-modified flag.
diff --git a/mimelib/mimelib/entity.h b/mimelib/mimelib/entity.h
index 1f2c3f6d..e555f6ad 100644
--- a/mimelib/mimelib/entity.h
+++ b/mimelib/mimelib/entity.h
@@ -48,10 +48,10 @@ class DwBody;
//. 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 tqparent
-//. node, or an intermediate node, having both a tqparent node and child nodes.
+//. 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.
//. 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 tqparent
+//. object. If a {\tt DwEntity} object is an intermediate node, its parent
//. must be a {\tt DwBody} object. The child nodes of a {\tt DwEntity}
//. object are the {\tt DwHeaders} and {\tt DwBody} objects it contains.
//.
@@ -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 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 aEntity}.
- //. The tqparent of the new {\tt DwEntity} object is set to {\tt NULL}.
+ //. The parent 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 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
@@ -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 tqparent node of the {\tt DwEntity} object
+ //. {\tt aEntity}. The parent node of the {\tt DwEntity} object
//. is not changed.
virtual void Parse();
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();
diff --git a/mimelib/mimelib/fieldbdy.h b/mimelib/mimelib/fieldbdy.h
index 71a2164f..229bc7bc 100644
--- a/mimelib/mimelib/fieldbdy.h
+++ b/mimelib/mimelib/fieldbdy.h
@@ -45,9 +45,9 @@
//. interface common to all structured field bodies.
//.
//. In the tree (broken-down) representation of a message, a {\tt DwFieldBody}
-//. object may be either a leaf node, having a tqparent but no child nodes, or
-//. an intermediate node, having a tqparent and one or more child nodes. The
-//. tqparent node is the {\tt DwField} object that contains it. Child nodes,
+//. object may be either a leaf node, having a parent but no child nodes, or
+//. an intermediate node, having a parent and one or more child nodes. The
+//. parent node is the {\tt DwField} object that contains it. Child nodes,
//. if present, depend on the particular subclass of {\tt DwFieldBody} that
//. is instantiated. A {\tt DwAddressList} object, for example, has
//. {\tt DwAddress} objects as its child nodes.
@@ -78,14 +78,14 @@ public:
DwFieldBody(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwFieldBody} object's string representation to the empty
- //. string and sets its tqparent to {\tt NULL}.
+ //. string and sets its parent to {\tt NULL}.
//.
//. The second constructor is the copy constructor, which performs a
//. deep copy of {\tt aFieldBody}.
- //. The tqparent of the new {\tt DwFieldBody} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwFieldBody} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwFieldBody}
- //. 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
@@ -95,7 +95,7 @@ public:
const DwFieldBody& operator = (const DwFieldBody& aFieldBody);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aFieldBody}. The tqparent node of the {\tt DwFieldBody} object
+ //. {\tt aFieldBody}. The parent node of the {\tt DwFieldBody} object
//. is not changed.
void SetOffset(int aOffset);
diff --git a/mimelib/mimelib/group.h b/mimelib/mimelib/group.h
index 06600af2..e823500f 100644
--- a/mimelib/mimelib/group.h
+++ b/mimelib/mimelib/group.h
@@ -52,8 +52,8 @@
//. and a {\tt DwMailboxList} object for the list of mailboxes.
//.
//. In the tree (broken-down) representation of message, a {\tt DwGroup}
-//. object may be only an intermediate node, having both a tqparent and a single
-//. child node. Its tqparent node must be a {\tt DwField} or a
+//. object may be only an intermediate node, having both a parent and a single
+//. child node. Its parent node must be a {\tt DwField} or a
//. {\tt DwAddressList}. Its child is a {\tt DwMailboxList}.
//.
//. A {\tt DwGroup} is a {\tt DwAddress}, and therefore it can be included
@@ -74,14 +74,14 @@ public:
DwGroup(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwGroup} 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 aGroup}.
- //. The tqparent of the new {\tt DwGroup} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwGroup} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwGroup}
- //. 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
@@ -91,7 +91,7 @@ public:
const DwGroup& operator = (const DwGroup& aGroup);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aGroup}. The tqparent node of the {\tt DwGroup} object
+ //. {\tt aGroup}. The parent node of the {\tt DwGroup} object
//. is not changed.
virtual void Parse();
diff --git a/mimelib/mimelib/headers.h b/mimelib/mimelib/headers.h
index a2011776..a34531bd 100644
--- a/mimelib/mimelib/headers.h
+++ b/mimelib/mimelib/headers.h
@@ -86,8 +86,8 @@ class DwText;
//. header fields.
//.
//. In the tree (broken-down) representation of a message, a {\tt DwHeaders}
-//. object is an intermediate node, having both a tqparent node and several
-//. child nodes. The tqparent node is the {\tt DwEntity} object that contains
+//. object is an intermediate node, having both a parent node and several
+//. child nodes. The parent node is the {\tt DwEntity} object that contains
//. it. The child nodes are the {\tt DwField} objects in the list it manages.
//. (See the man page for {\tt DwMessageComponent} for a discussion of
//. the tree representation of a message.)
@@ -138,14 +138,14 @@ public:
DwHeaders(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwHeaders} 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 aHeaders}.
- //. The tqparent of the new {\tt DwHeaders} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwHeaders} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwHeaders}
- //. 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 a class
@@ -155,7 +155,7 @@ public:
const DwHeaders& operator = (const DwHeaders& aHeaders);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aHeaders}. The tqparent node of the {\tt DwHeaders} object
+ //. {\tt aHeaders}. The parent node of the {\tt DwHeaders} object
//. is not changed.
virtual void Parse();
diff --git a/mimelib/mimelib/mailbox.h b/mimelib/mimelib/mailbox.h
index f118e38e..9c472c48 100644
--- a/mimelib/mimelib/mailbox.h
+++ b/mimelib/mimelib/mailbox.h
@@ -58,8 +58,8 @@
//. of a mailbox.
//.
//. In the tree (broken-down) representation of message, a {\tt DwMailbox}
-//. object may be only a leaf node, having a tqparent but no child nodes.
-//. Its tqparent node must be a {\tt DwField}, a {\tt DwAddressList}, or a
+//. object may be only a leaf node, having a parent but no child nodes.
+//. Its parent node must be a {\tt DwField}, a {\tt DwAddressList}, or a
//. {\tt DwMailboxList} object.
//.
//. {\tt DwMailbox} has member functions for getting or setting the strings
@@ -85,14 +85,14 @@ public:
DwMailbox(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMailbox} 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 aMailbox}.
- //. The tqparent of the new {\tt DwMailbox} is set to {\tt NULL}.
+ //. The parent of the new {\tt DwMailbox} is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwMailbox}
- //. 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 a class
@@ -102,7 +102,7 @@ public:
const DwMailbox& operator = (const DwMailbox& aMailbox);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aMailbox}. The tqparent node of the {\tt DwMailbox} object
+ //. {\tt aMailbox}. The parent node of the {\tt DwMailbox} object
//. is not changed.
virtual void Parse();
diff --git a/mimelib/mimelib/mboxlist.h b/mimelib/mimelib/mboxlist.h
index 8d6f59c9..3cfe1c6d 100644
--- a/mimelib/mimelib/mboxlist.h
+++ b/mimelib/mimelib/mboxlist.h
@@ -60,14 +60,14 @@ public:
DwMailboxList(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMailboxList} 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 copies the
//. string representation and all {\tt DwMailbox} objects from {\tt aList}.
- //. The tqparent of the new {\tt DwMailboxList} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwMailboxList} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwMailboxList}
- //. 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
@@ -77,7 +77,7 @@ public:
const DwMailboxList& operator = (const DwMailboxList& aList);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aList}. The tqparent node of the {\tt DwMailboxList} object
+ //. {\tt aList}. The parent node of the {\tt DwMailboxList} object
//. is not changed.
virtual void Parse();
diff --git a/mimelib/mimelib/mechansm.h b/mimelib/mimelib/mechansm.h
index ace3c29b..bb8f55e1 100644
--- a/mimelib/mimelib/mechansm.h
+++ b/mimelib/mimelib/mechansm.h
@@ -58,14 +58,14 @@ public:
DwMechanism(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMechanism} object's string representation to the empty
- //. string and sets its tqparent to {\tt NULL}.
+ //. string and sets its parent to {\tt NULL}.
//.
//. The second constructor is the copy constructor, which copies the
//. string representation from {\tt aCte}.
- //. The tqparent of the new {\tt DwMechanism} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwMechanism} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwMechanism}
- //. 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
@@ -75,7 +75,7 @@ public:
const DwMechanism& operator = (const DwMechanism& aCte);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aCte}. The tqparent node of the {\tt DwMechanism} object
+ //. {\tt aCte}. The parent node of the {\tt DwMechanism} object
//. is not changed.
virtual void Parse();
@@ -91,7 +91,7 @@ public:
//. executes the assemble method for {\tt DwMechanism} objects.
//. It should be called whenever one of the object's attributes
//. is changed in order to assemble the string representation.
- //. It will be called automatically for this object by the tqparent
+ //. It will be called automatically for this object by the parent
//. object's {\tt Assemble()} member function if the is-modified
//. flag is set.
//.
diff --git a/mimelib/mimelib/mediatyp.h b/mimelib/mimelib/mediatyp.h
index 6484f1e3..02ec6e13 100644
--- a/mimelib/mimelib/mediatyp.h
+++ b/mimelib/mimelib/mediatyp.h
@@ -79,14 +79,14 @@ public:
DwMediaType(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMediaType} 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
//. deep copy of {\tt aMediaType}.
- //. The tqparent of the new {\tt DwMediaType} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwMediaType} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwMediaType}
- //. 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
@@ -96,7 +96,7 @@ public:
const DwMediaType& operator = (const DwMediaType& aMediaType);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aMediaType}. The tqparent node of the {\tt DwMediaType}
+ //. {\tt aMediaType}. The parent node of the {\tt DwMediaType}
//. object is not changed.
virtual void Parse();
@@ -114,7 +114,7 @@ public:
//. It should be called whenever one of the object's attributes
//. is changed in order to assemble the string representation from
//. its broken-down representation. It will be called
- //. automatically for this object by the tqparent object's
+ //. automatically for this object by the parent object's
//. {\tt Assemble()} member function if the is-modified flag is set.
//.
//. This function clears the is-modified flag.
diff --git a/mimelib/mimelib/message.h b/mimelib/mimelib/message.h
index 3cfac701..73996664 100644
--- a/mimelib/mimelib/message.h
+++ b/mimelib/mimelib/message.h
@@ -43,10 +43,10 @@
//. a {\tt DwHeaders} object and a {\tt DwBody} object.
//.
//. In the tree (broken-down) representation of message, a {\tt DwMessage}
-//. object is almost always a root node, having child nodes but no tqparent node.
+//. object is almost always a root node, having child nodes but no parent node.
//. The child nodes are the {\tt DwHeaders} object and the {\tt DwBody} object
//. it contains. A {\tt DwMessage} may sometimes be an intermediate node. In
-//. this special case, the tqparent node is a {\tt DwBody} object of type
+//. this special case, the parent node is a {\tt DwBody} object of type
//. "message/*" and the {\tt DwMessage} object represents an encapsulated
//. message.
//.
@@ -66,14 +66,14 @@ public:
DwMessage(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMessage} 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 aMessage}.
- //. The tqparent of the new {\tt DwMessage} object is set to {\tt NULL}.
+ //. The parent of the new {\tt DwMessage} object is set to {\tt NULL}.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwMessage}
- //. 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.
@@ -81,7 +81,7 @@ public:
const DwMessage& operator = (const DwMessage& aMessage);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aMessage}. The tqparent node of the {\tt DwMessage} object
+ //. {\tt aMessage}. The parent node of the {\tt DwMessage} object
//. is not changed.
virtual DwMessageComponent* Clone() const;
diff --git a/mimelib/mimelib/msgcmp.h b/mimelib/mimelib/msgcmp.h
index 46ff95cb..de2c6d89 100644
--- a/mimelib/mimelib/msgcmp.h
+++ b/mimelib/mimelib/msgcmp.h
@@ -94,21 +94,21 @@
//. to be set.
//.
//. \item
-//. A tqparent. Most message components are part of another component.
+//. A parent. Most message components are part of another component.
//. A collection of headers is part of a message or body part, a header
//. field is part of a collection of headers, a field-body is part
-//. of a header field, and so on. The tqparent of
+//. of a header field, and so on. The parent of
//. a component is the component that contains it. This tree structure
-//. is important, since a component's tqparent must be parsed before the
+//. is important, since a component's parent must be parsed before the
//. component can be. Also, a component's string representation must
-//. be assembled before its tqparent's. To maintain consistency in the
+//. be assembled before its parent's. To maintain consistency in the
//. tree, whenever a component's is-modified flag is set,
-//. the component notifies its tqparent to also set its is-modified flag.
+//. the component notifies its parent to also set its is-modified flag.
//. In this way, an is-modified flag set anywhere in the tree always
//. propagates up to the root component.
//.
//. \item
-//. Children. The preceding discussion about a component's tqparent is
+//. Children. The preceding discussion about a component's parent is
//. relevant to an understanding of a component's tqchildren. A component's
//. parse method calls the parse methods of its tqchildren
//. after it has executed its own parse method (and, in some cases, created
@@ -163,15 +163,15 @@ public:
DwMessageComponent(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMessageComponent} object's string representation to the
- //. empty string and sets its tqparent to NULL.
+ //. empty string and sets its parent to NULL.
//.
//. The second constructor is the copy constructor, which performs
- //. a deep copy of {\tt aCmp}. The tqparent of the new
+ //. a deep copy of {\tt aCmp}. The parent of the new
//. {\tt DwMessageComponent} object is set to NULL.
//.
//. The third constructor copies {\tt aStr} to the new
//. {\tt DwMessageComponent} object's string representation and sets
- //. {\tt aParent} as its tqparent. In typical cases, the virtual
+ //. {\tt aParent} as its parent. In typical cases, the virtual
//. member function {\tt Parse()} should be called immediately after
//. this constructor to parse the new {\tt DwMessageComponent} object
//. and all of its tqchildren into their broken-down representations.
@@ -230,11 +230,11 @@ public:
//. {\tt DwMessageComponent::Assemble()}.
DwMessageComponent* Parent();
- //. Returns the {\tt DwMessageComponent} object that is the tqparent
+ //. Returns the {\tt DwMessageComponent} object that is the parent
//. of this object.
void SetParent(DwMessageComponent* aParent);
- //. Sets {\tt aParent} as the {\tt DwMessageComponent} object's tqparent.
+ //. Sets {\tt aParent} as the {\tt DwMessageComponent} object's parent.
DwBool IsModified() const;
//. Returns 1 if the is-modified flag is set for this
@@ -242,7 +242,7 @@ public:
void SetModified();
//. Sets the is-modified (dirty) flag for this {\tt DwMessageComponent}
- //. object and notifies the object's tqparent to also set its is-modified
+ //. object and notifies the object's parent to also set its is-modified
//. flag.
int ClassId() const;
diff --git a/mimelib/mimelib/msgid.h b/mimelib/mimelib/msgid.h
index 11c1edb1..185e860e 100644
--- a/mimelib/mimelib/msgid.h
+++ b/mimelib/mimelib/msgid.h
@@ -40,8 +40,8 @@
//. contain the local-part and the domain.
//.
//. In the tree (broken-down) representation of message, a {\tt DwMsgId}
-//. object may only be a leaf node, having a tqparent but no child nodes.
-//. Its tqparent node must be a {\tt DwField} object.
+//. object may only be a leaf node, having a parent but no child nodes.
+//. Its parent node must be a {\tt DwField} object.
//.
//. {\tt DwMsgId} has member functions for getting or setting its local-part
//. and its domain. You can have the library to create the contents of a
@@ -61,14 +61,14 @@ public:
DwMsgId(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwMsgId} object's string representation to the empty string
- //. and sets its tqparent to NULL.
+ //. and sets its parent to NULL.
//.
//. The second constructor is the copy constructor, which performs
//. a deep copy of {\tt aMsgId}.
- //. The tqparent of the new {\tt DwMsgId} object is set to NULL.
+ //. The parent of the new {\tt DwMsgId} object is set to NULL.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwMsgId}
- //. 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 NULL, {\tt aParent} should point to an object of a class
@@ -78,7 +78,7 @@ public:
const DwMsgId& operator = (const DwMsgId& aMsgId);
//. This is the assignment operator, which performs a deep copy of
- //. {\tt aMsgId}. The tqparent node of the {\tt DwMsgId} object
+ //. {\tt aMsgId}. The parent node of the {\tt DwMsgId} object
//. is not changed.
virtual void Parse();
diff --git a/mimelib/mimelib/param.h b/mimelib/mimelib/param.h
index b1b7560b..c5ab6a14 100644
--- a/mimelib/mimelib/param.h
+++ b/mimelib/mimelib/param.h
@@ -62,14 +62,14 @@ public:
DwParameter(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwParameter} object's string representation to the empty string
- //. and sets its tqparent to NULL.
+ //. and sets its parent to NULL.
//.
//. The second constructor is the copy constructor, which copies the
//. string representation, attribute, and value from {\tt aParam}.
- //. The tqparent of the new {\tt DwParameter} object is set to NULL.
+ //. The parent of the new {\tt DwParameter} object is set to NULL.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwParameter}
- //. 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 NULL, {\tt aParent} should point to an object of a class
@@ -93,7 +93,7 @@ public:
//. It should be called whenever one of the object's attributes
//. is changed in order to assemble the string representation from
//. its broken-down representation. It will be called
- //. automatically for this object by the tqparent object's
+ //. automatically for this object by the parent object's
//. {\tt Assemble()} member function if the is-modified flag is set.
virtual DwMessageComponent* Clone() const;
diff --git a/mimelib/mimelib/text.h b/mimelib/mimelib/text.h
index c3e084da..14fd8f7d 100644
--- a/mimelib/mimelib/text.h
+++ b/mimelib/mimelib/text.h
@@ -55,14 +55,14 @@ public:
DwText(const DwString& aStr, DwMessageComponent* aParent=0);
//. The first constructor is the default constructor, which sets the
//. {\tt DwText} object's string representation to the empty string
- //. and sets its tqparent to NULL.
+ //. and sets its parent to NULL.
//.
//. The second constructor is the copy constructor, which copies the
//. string representation from {\tt aText}.
- //. The tqparent of the new {\tt DwText} object is set to NULL.
+ //. The parent of the new {\tt DwText} object is set to NULL.
//.
//. The third constructor copies {\tt aStr} to the {\tt DwText}
- //. 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 NULL, {\tt aParent} should point to an object of a class