From 36a36a5c1015aa0d03f4515c401e907ddb9d6291 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- mimelib/Tutorial | 4 ++-- mimelib/doc/address.html | 8 ++++---- mimelib/doc/addrlist.html | 8 ++++---- mimelib/doc/body.html | 14 +++++++------- mimelib/doc/bodypart.html | 8 ++++---- mimelib/doc/datetime.html | 6 +++--- mimelib/doc/disptype.html | 10 +++++----- mimelib/doc/entity.html | 12 ++++++------ mimelib/doc/field.html | 14 +++++++------- mimelib/doc/fieldbdy.html | 14 +++++++------- mimelib/doc/group.html | 10 +++++----- mimelib/doc/headers.html | 12 ++++++------ mimelib/doc/mailbox.html | 12 ++++++------ mimelib/doc/mboxlist.html | 8 ++++---- mimelib/doc/mechansm.html | 10 +++++----- mimelib/doc/mediatyp.html | 10 +++++----- mimelib/doc/message.html | 12 ++++++------ mimelib/doc/msgcmp.html | 24 ++++++++++++------------ mimelib/doc/msgid.html | 12 ++++++------ mimelib/doc/param.html | 8 ++++---- mimelib/doc/text.html | 6 +++--- mimelib/mimelib/address.h | 8 ++++---- mimelib/mimelib/addrlist.h | 8 ++++---- mimelib/mimelib/body.h | 16 ++++++++-------- mimelib/mimelib/bodypart.h | 8 ++++---- mimelib/mimelib/datetime.h | 6 +++--- mimelib/mimelib/disptype.h | 10 +++++----- mimelib/mimelib/entity.h | 14 +++++++------- mimelib/mimelib/field.h | 14 +++++++------- mimelib/mimelib/fieldbdy.h | 14 +++++++------- mimelib/mimelib/group.h | 12 ++++++------ mimelib/mimelib/headers.h | 12 ++++++------ mimelib/mimelib/mailbox.h | 12 ++++++------ mimelib/mimelib/mboxlist.h | 8 ++++---- mimelib/mimelib/mechansm.h | 10 +++++----- mimelib/mimelib/mediatyp.h | 10 +++++----- mimelib/mimelib/message.h | 12 ++++++------ mimelib/mimelib/msgcmp.h | 24 ++++++++++++------------ mimelib/mimelib/msgid.h | 12 ++++++------ mimelib/mimelib/param.h | 8 ++++---- mimelib/mimelib/text.h | 6 +++--- 41 files changed, 223 insertions(+), 223 deletions(-) (limited to 'mimelib') diff --git a/mimelib/Tutorial b/mimelib/Tutorial index dfa98156a..358fab7e5 100644 --- a/mimelib/Tutorial +++ b/mimelib/Tutorial @@ -95,9 +95,9 @@ new header field) to the DwHeaders object (representing the header), the is-modified flag will be set for the DwHeaders object, indicating that the string representation of the DwHeaders object will have to be re-assembled from the header fields that it contains. When a node's is-modified flag is -set, it also notifies its tqparent node to set its is-modified flag. Thus, +set, it also notifies its parent node to set its is-modified flag. Thus, when the DwHeaders object's is-modified flag is set, the DwMessage object -that is its tqparent will also have its is-modified flag set. That way, when +that is its parent will also have its is-modified flag set. That way, when Assemble() is called for the DwMessage object, it will call the Assemble() member function for the DwHeaders object, as required. Notice that the value of having an is-modified flag is that it can purge the tree traversal when diff --git a/mimelib/doc/address.html b/mimelib/doc/address.html index f7eb71faf..c85046aa7 100644 --- a/mimelib/doc/address.html +++ b/mimelib/doc/address.html @@ -128,16 +128,16 @@ DwAddress(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwAddress 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 and all attributes from aAddress. The tqparent +representation and all attributes from aAddress. The parent of the new DwAddress object is set to NULL.

The third constructor copies aStr to the DwAddress object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -147,7 +147,7 @@ a class derived from DwField. (const DwAddress& aAddr)

This is the assignment operator, which performs a deep copy of -aAddr. The tqparent node of the DwAddress object +aAddr. The parent node of the DwAddress object is not changed.

diff --git a/mimelib/doc/addrlist.html b/mimelib/doc/addrlist.html index 20a588d10..d3a563eef 100644 --- a/mimelib/doc/addrlist.html +++ b/mimelib/doc/addrlist.html @@ -69,16 +69,16 @@ DwAddressList(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwAddressList object's string representation to the empty -string and sets its tqparent to NULL. +string and sets its parent to NULL.

The second constructor is the copy constructor, which copies the string representation and all DwAddress objects from -aList. The tqparent of the new +aList. The parent of the new DwAddressList object is set to NULL.

The third constructor copies aStr to the DwAddressList object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -88,7 +88,7 @@ a class derived from DwField. = (const DwAddressList& aList)

This is the assignment operator, which performs a deep copy of -aList. The tqparent node of the +aList. The parent node of the DwAddressList object is not changed.

virtual void Parse() diff --git a/mimelib/doc/body.html b/mimelib/doc/body.html index fb6c42c00..1526751a4 100644 --- a/mimelib/doc/body.html +++ b/mimelib/doc/body.html @@ -85,8 +85,8 @@ header field from the

In the tree (broken-down) representation of a message, a 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 +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 DwEntity object that contains it. If it is an intermediate node, it must be of type multipart with DwBodyPart objects as child nodes, or of type message with a single @@ -117,15 +117,15 @@ DwBody(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwBody 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 aBody. The tqparent of the new DwBody object +of aBody. The parent of the new DwBody object is set to NULL.

The third constructor copies aStr to the DwBody object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -135,7 +135,7 @@ a class derived from DwEntity. DwBody& aBody)

This is the assignment operator, which performs a deep copy of -aBody. The tqparent node of the DwBody object +aBody. The parent node of the DwBody object is not changed.

virtual void Parse() @@ -150,7 +150,7 @@ collection of DwBodyPart objects. For a message DwBody, the parse method does nothing. This member function calls the Parse() member function of any objects it creates.

-Note: If the DwBody object has no tqparent node -- that is, +Note: If the DwBody object has no parent node -- that is, it is not contained by a DwEntity object -- then the parse method does nothing, since it is unable to determine the type of body.

diff --git a/mimelib/doc/bodypart.html b/mimelib/doc/bodypart.html index 93f281b5d..6a3a29b6e 100644 --- a/mimelib/doc/bodypart.html +++ b/mimelib/doc/bodypart.html @@ -66,15 +66,15 @@ DwBodyPart(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwBodyPart 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 aPart. The tqparent of the new +of aPart. The parent of the new DwBodyPart object is set to NULL.

The third constructor copies aStr to the DwBodyPart object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -84,7 +84,7 @@ a class derived from DwBody. (const DwBodyPart& aPart)

This is the assignment operator, which performs a deep copy of -aPart. The tqparent node of the DwBodyPart +aPart. The parent node of the DwBodyPart object is not changed.

virtual DwMessageComponent* diff --git a/mimelib/doc/datetime.html b/mimelib/doc/datetime.html index 8461b260e..0516d9292 100644 --- a/mimelib/doc/datetime.html +++ b/mimelib/doc/datetime.html @@ -94,12 +94,12 @@ DwDateTime(const DwString& aStr, DwMessageComponent* aParent=0) 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 new +The second constructor is the copy constructor. The parent of the new DwDateTime object is set to NULL.

The third constructor sets aStr as the DwDateTime object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called after this constructor to extract the date and time information from the string representation. Unless it is NULL, aParent should point to an object of @@ -130,7 +130,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwDateTime objects. 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 +will be called automatically for this object by the parent object's Assemble() member function if the is-modified flag is set.

This function clears the is-modified flag. diff --git a/mimelib/doc/disptype.html b/mimelib/doc/disptype.html index 9d6c71a52..c64b1dc13 100644 --- a/mimelib/doc/disptype.html +++ b/mimelib/doc/disptype.html @@ -90,15 +90,15 @@ DwDispositionType(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwDispositionType object's string representation to the empty -string and sets its tqparent to NULL. +string and sets its parent to NULL.

The second constructor is the copy constructor, which performs deep copy -of aDispType. The tqparent of the new +of aDispType. The parent of the new DwDispositionType object is set to NULL.

The third constructor copies aStr to the DwDispositionType object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -108,7 +108,7 @@ a class derived from DwField. = (const DwDispositionType& aDispType)

This is the assignment operator, which performs a deep copy of -aDispType. The tqparent node of the +aDispType. The parent node of the DwDipositionType object is not changed.

virtual void Parse() @@ -127,7 +127,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwDispositionType objects. 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 +It will be called automatically for this object by the parent object's Assemble() member function if the is-modified flag is set.

This function clears the is-modified flag. diff --git a/mimelib/doc/entity.html b/mimelib/doc/entity.html index 64a1cdbff..08cf8b753 100644 --- a/mimelib/doc/entity.html +++ b/mimelib/doc/entity.html @@ -52,10 +52,10 @@ and a DwBody object.

In the tree (broken-down) representation of message, a 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 +but no parent node, or an intermediate node, having both a parent node and child nodes. A DwEntity object that is a root node must also be a DwMessage object. If a -DwEntity object is an intermediate node, its tqparent must +DwEntity object is an intermediate node, its parent must be a DwBody object. The child nodes of a DwEntity object are the DwHeaders and DwBody objects it contains. @@ -80,15 +80,15 @@ DwEntity(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwEntity 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 aEntity. The tqparent of the new +of aEntity. The parent of the new DwEntity object is set to NULL.

The third constructor copies aStr to the DwEntity object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -98,7 +98,7 @@ a class derived from DwBody. (const DwEntity& aEntity)

This is the assignment operator, which performs a deep copy of -aEntity. The tqparent node of the DwEntity +aEntity. The parent node of the DwEntity object is not changed.

virtual void Parse() diff --git a/mimelib/doc/field.html b/mimelib/doc/field.html index c744877c4..19736f271 100644 --- a/mimelib/doc/field.html +++ b/mimelib/doc/field.html @@ -73,8 +73,8 @@ name, a DwString that contains its field body, and a a broken-down (that is, parsed) version of its field body.

In the tree (broken-down) representation of message, a -DwField object is always an intermediate node, having a tqparent -node and a single child node. The tqparent node is the +DwField object is always an intermediate node, having a parent +node and a single child node. The parent node is the DwHeaders object that contains it. The child node is the DwFieldBody object it contains.

@@ -87,7 +87,7 @@ get and set the DwFieldBody object, use

A DwField object can be included in a list of DwField objects; usually this is the list of -DwField objects maintained by its tqparent +DwField objects maintained by its parent DwHeaders object. To get the next DwField object in a list, use the member function Next().

@@ -100,16 +100,16 @@ DwField(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwField object's field name and field body to the empty string, -set its tqparent to NULL, and sets its +set its parent to NULL, and sets its DwFieldBody object to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aField. The tqparent of the new DwField +of aField. The parent of the new DwField object is set to NULL.

The third constructor copies aStr to the DwField object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -119,7 +119,7 @@ a class derived from DwHeaders. (const DwField& aField)

This is the assignment operator, which performs a deep copy of -aField. The tqparent node of the DwField object +aField. The parent node of the DwField object is not changed.

virtual void Parse() diff --git a/mimelib/doc/fieldbdy.html b/mimelib/doc/fieldbdy.html index 1da30ab54..856fd5330 100644 --- a/mimelib/doc/fieldbdy.html +++ b/mimelib/doc/fieldbdy.html @@ -50,9 +50,9 @@ grammar specified by RFC-822. It is an abstract base class that defines the interface common to all structured field bodies.

In the tree (broken-down) representation of a message, a -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 +DwFieldBody 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 DwField object that contains it. Child nodes, if present, depend on the particular subclass of DwFieldBody that is instantiated. A @@ -80,15 +80,15 @@ DwFieldBody(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwFieldBody 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 aFieldBody. The tqparent of the new +of aFieldBody. The parent of the new DwFieldBody object is set to NULL.

The third constructor copies aStr to the DwFieldBody object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -98,7 +98,7 @@ a class derived from DwField. (const DwFieldBody& aFieldBody)

This is the assignment operator, which performs a deep copy of -aFieldBody. The tqparent node of the +aFieldBody. The parent node of the DwFieldBody object is not changed.

void SetOffset(int aOffset) diff --git a/mimelib/doc/group.html b/mimelib/doc/group.html index 27c8397eb..1d374d874 100644 --- a/mimelib/doc/group.html +++ b/mimelib/doc/group.html @@ -59,7 +59,7 @@ list of mailboxes.

In the tree (broken-down) representation of message, a DwGroup object may be only an intermediate node, having both -a tqparent and a single child node. Its tqparent node must be a +a parent and a single child node. Its parent node must be a DwField or a DwAddressList. Its child is a DwMailboxList. @@ -79,15 +79,15 @@ DwGroup(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwGroup 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 aGroup. The tqparent of the new DwGroup +of aGroup. The parent of the new DwGroup object is set to NULL.

The third constructor copies aStr to the DwGroup object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -98,7 +98,7 @@ a class derived from DwField or (const DwGroup& aGroup)

This is the assignment operator, which performs a deep copy of -aGroup. The tqparent node of the DwGroup object +aGroup. The parent node of the DwGroup object is not changed.

virtual void Parse() diff --git a/mimelib/doc/headers.html b/mimelib/doc/headers.html index 939b340ee..8bf94ad98 100644 --- a/mimelib/doc/headers.html +++ b/mimelib/doc/headers.html @@ -153,8 +153,8 @@ or body part), as described in RFC-822 and RFC-2045. A the individual header fields.

In the tree (broken-down) representation of a message, a -DwHeaders object is an intermediate node, having both a tqparent -node and several child nodes. The tqparent node is the +DwHeaders object is an intermediate node, having both a parent +node and several child nodes. The parent node is the DwEntity object that contains it. The child nodes are the DwField objects in the list it manages. (See the man page for @@ -208,15 +208,15 @@ DwHeaders(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwHeaders 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 aHeaders. The tqparent of the new +of aHeaders. The parent of the new DwHeaders object is set to NULL.

The third constructor copies aStr to the DwHeaders object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -226,7 +226,7 @@ a class derived from DwEntity. (const DwHeaders& aHeaders)

This is the assignment operator, which performs a deep copy of -aHeaders. The tqparent node of the +aHeaders. The parent node of the DwHeaders object is not changed.

virtual void Parse() diff --git a/mimelib/doc/mailbox.html b/mimelib/doc/mailbox.html index 385bd8a23..492070ccb 100644 --- a/mimelib/doc/mailbox.html +++ b/mimelib/doc/mailbox.html @@ -70,8 +70,8 @@ fact that a mailbox is also an address. A DwMailbox contains strings representing the full name, local-part, route, and domain of a mailbox.

In the tree (broken-down) representation of message, a -DwMailbox object may be only a leaf node, having a tqparent -but no child nodes. Its tqparent node must be a +DwMailbox object may be only a leaf node, having a parent +but no child nodes. Its parent node must be a DwField, a DwAddressList, or a DwMailboxList object. @@ -94,15 +94,15 @@ DwMailbox(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMailbox 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 aMailbox. The tqparent of the new +of aMailbox. The parent of the new DwMailbox is set to NULL.

The third constructor copies aStr to the DwMailbox object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -112,7 +112,7 @@ a class derived from DwField. (const DwMailbox& aMailbox)

This is the assignment operator, which performs a deep copy of -aMailbox. The tqparent node of the +aMailbox. The parent node of the DwMailbox object is not changed.

virtual void Parse() diff --git a/mimelib/doc/mboxlist.html b/mimelib/doc/mboxlist.html index 2bbe8d95e..2bae2b4e3 100644 --- a/mimelib/doc/mboxlist.html +++ b/mimelib/doc/mboxlist.html @@ -71,16 +71,16 @@ DwMailboxList(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMailboxList object's string representation to the empty -string and sets its tqparent to NULL. +string and sets its parent to NULL.

The second constructor is the copy constructor, which copies the string representation and all DwMailbox objects from -aList. The tqparent of the new +aList. The parent of the new DwMailboxList object is set to NULL.

The third constructor copies aStr to the DwMailboxList object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -90,7 +90,7 @@ a class derived from DwField. = (const DwMailboxList& aList)

This is the assignment operator, which performs a deep copy of -aList. The tqparent node of the +aList. The parent node of the DwMailboxList object is not changed.

virtual void Parse() diff --git a/mimelib/doc/mechansm.html b/mimelib/doc/mechansm.html index 9e5f525fb..9880b5fa2 100644 --- a/mimelib/doc/mechansm.html +++ b/mimelib/doc/mechansm.html @@ -59,15 +59,15 @@ DwMechanism(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMechanism 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 aCte. The tqparent of the new +representation from aCte. The parent of the new DwMechanism object is set to NULL.

The third constructor copies aStr to the DwMechanism object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -77,7 +77,7 @@ a class derived from DwField. (const DwMechanism& aCte)

This is the assignment operator, which performs a deep copy of -aCte. The tqparent node of the DwMechanism +aCte. The parent node of the DwMechanism object is not changed.

virtual void Parse() @@ -96,7 +96,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for 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 object's Assemble() member function +this object by the parent object's Assemble() member function if the is-modified flag is set.

This function clears the is-modified flag. diff --git a/mimelib/doc/mediatyp.html b/mimelib/doc/mediatyp.html index e603a2699..01696084b 100644 --- a/mimelib/doc/mediatyp.html +++ b/mimelib/doc/mediatyp.html @@ -107,15 +107,15 @@ DwMediaType(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMediaType 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 deep copy -of aMediaType. The tqparent of the new +of aMediaType. The parent of the new DwMediaType object is set to NULL.

The third constructor copies aStr to the DwMediaType object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of @@ -125,7 +125,7 @@ a class derived from DwField. (const DwMediaType& aMediaType)

This is the assignment operator, which performs a deep copy of -aMediaType. The tqparent node of the +aMediaType. The parent node of the DwMediaType object is not changed.

virtual void Parse() @@ -144,7 +144,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwMediaType objects. 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 +It will be called automatically for this object by the parent object's Assemble() member function if the is-modified flag is set.

This function clears the is-modified flag. diff --git a/mimelib/doc/message.html b/mimelib/doc/message.html index bb3fcf220..d08d5af4e 100644 --- a/mimelib/doc/message.html +++ b/mimelib/doc/message.html @@ -50,10 +50,10 @@ both a DwHeaders object and a

In the tree (broken-down) representation of message, a DwMessage object is almost always a root node, having child -nodes but no tqparent node. The child nodes are the +nodes but no parent node. The child nodes are the DwHeaders object and the DwBody object it contains. A DwMessage may sometimes be an intermediate node. -In this special case, the tqparent node is a DwBody object +In this special case, the parent node is a DwBody object of type "message/*" and the DwMessage object represents an encapsulated message.

@@ -72,15 +72,15 @@ DwMessage(const DwString& aStr, DwMessageComponent* aParent=0)

The first constructor is the default constructor, which sets the DwMessage 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 aMessage. The tqparent of the new +of aMessage. The parent of the new DwMessage object is set to NULL.

The third constructor copies aStr to the DwMessage object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation.

@@ -88,7 +88,7 @@ in order to parse the string representation. (const DwMessage& aMessage)

This is the assignment operator, which performs a deep copy of -aMessage. The tqparent node of the +aMessage. The parent node of the DwMessage object is not changed.

virtual DwMessageComponent* diff --git a/mimelib/doc/msgcmp.html b/mimelib/doc/msgcmp.html index 4eae39937..2e8a3da77 100644 --- a/mimelib/doc/msgcmp.html +++ b/mimelib/doc/msgcmp.html @@ -130,19 +130,19 @@ These features are the following: SetModified() which forces the is-modified flag to be set.

  • - A tqparent. Most message components are part of another component. A collection + 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 a component is the component that contains it. This tree structure - is important, since a component's tqparent must be parsed before the component + The parent of a component is the component that contains it. This tree structure + 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 tree, whenever a component's - is-modified flag is set, the component notifies its tqparent to also set its + its parent's. To maintain consistency in the tree, whenever a component's + is-modified flag is set, 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.

  • - Children. The preceding discussion about a component's tqparent is relevant + 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 all of its tqchildren). Also, a component @@ -163,15 +163,15 @@ DwMessageComponent(const DwString& aStr, DwMessageComponent* aParent=0)

    The first constructor is the default constructor, which sets the 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 aCmp. The tqparent of the new +of aCmp. The parent of the new DwMessageComponent object is set to NULL.

    The third constructor copies aStr to the new DwMessageComponent object's string representation and sets -aParent as its tqparent. In typical cases, the virtual member +aParent as its parent. In typical cases, the virtual member function Parse() should be called immediately after this constructor to parse the new DwMessageComponent object and all of its tqchildren into their broken-down representations. @@ -241,14 +241,14 @@ string representation are consistent. See also DwMessageComponent* Parent()

    -Returns the DwMessageComponent object that is the tqparent +Returns the DwMessageComponent object that is the parent of this object.

    void SetParent(DwMessageComponent* aParent)

    Sets aParent as the DwMessageComponent object's -tqparent. +parent.

    DwBool IsModified() const @@ -260,7 +260,7 @@ Returns 1 if the is-modified flag is set for this

    Sets the is-modified (dirty) flag for this -DwMessageComponent object and notifies the object's tqparent +DwMessageComponent object and notifies the object's parent to also set its is-modified flag.

    int ClassId() const diff --git a/mimelib/doc/msgid.html b/mimelib/doc/msgid.html index 0f5b7c365..69d10ef59 100644 --- a/mimelib/doc/msgid.html +++ b/mimelib/doc/msgid.html @@ -53,8 +53,8 @@ In the BNF grammar in RFC-822, a msg-id has a local-part and a contain the local-part and the domain.

    In the tree (broken-down) representation of message, a -DwMsgId object may only be a leaf node, having a tqparent but -no child nodes. Its tqparent node must be a +DwMsgId object may only be a leaf node, having a parent but +no child nodes. Its parent node must be a DwField object.

    DwMsgId has member functions for getting or setting its @@ -71,15 +71,15 @@ DwMsgId(const DwString& aStr, DwMessageComponent* aParent=0)

    The first constructor is the default constructor, which sets the 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 aMsgId. The tqparent of the new DwMsgId +of aMsgId. The parent of the new DwMsgId object is set to NULL.

    The third constructor copies aStr to the DwMsgId object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of a class derived from @@ -89,7 +89,7 @@ in order to parse the string representation. Unless it is NULL, (const DwMsgId& aMsgId)

    This is the assignment operator, which performs a deep copy of -aMsgId. The tqparent node of the DwMsgId object +aMsgId. The parent node of the DwMsgId object is not changed.

    virtual void Parse() diff --git a/mimelib/doc/param.html b/mimelib/doc/param.html index 3ca10ee8f..786f65bc5 100644 --- a/mimelib/doc/param.html +++ b/mimelib/doc/param.html @@ -69,15 +69,15 @@ DwParameter(const DwString& aStr, DwMessageComponent* aParent=0)

    The first constructor is the default constructor, which sets the 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 aParam. The tqparent +representation, attribute, and value from aParam. The parent of the new DwParameter object is set to NULL.

    The third constructor copies aStr to the DwParameter object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of a class derived from @@ -102,7 +102,7 @@ This virtual function, inherited from DwMessageComponent, executes the assemble method for DwParameter objects. 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 +It will be called automatically for this object by the parent object's Assemble() member function if the is-modified flag is set.

    virtual DwMessageComponent* diff --git a/mimelib/doc/text.html b/mimelib/doc/text.html index 4a32ce305..3fc637cac 100644 --- a/mimelib/doc/text.html +++ b/mimelib/doc/text.html @@ -53,15 +53,15 @@ DwText(const DwString& aStr, DwMessageComponent* aParent=0)

    The first constructor is the default constructor, which sets the 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 aText. The tqparent of the new +representation from aText. The parent of the new DwText object is set to NULL.

    The third constructor copies aStr to the DwText object's string representation and sets -aParent as its tqparent. The virtual member function +aParent as its parent. The virtual member function Parse() should be called immediately after this constructor in order to parse the string representation. Unless it is NULL, aParent should point to an object of a class derived from diff --git a/mimelib/mimelib/address.h b/mimelib/mimelib/address.h index dbd657bab..f4ec3a7d2 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 c02e38977..5db647256 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 129c19dc0..654812d45 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 7a9b32758..d2cda16e1 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 ef888d576..da7f62597 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 ad12e8c41..e1e90b3b3 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 1f2c3f6db..e555f6ad1 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 eac95494d..f53c2b023 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 71a2164f6..229bc7bc5 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 06600af29..e823500f9 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 a2011776e..a34531bd8 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 f118e38ee..9c472c487 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 8d6f59c97..3cfe1c6d6 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 ace3c29bf..bb8f55e12 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 6484f1e3e..02ec6e135 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 3cfac7013..73996664e 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 46ff95cb3..de2c6d891 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 11c1edb15..185e860e9 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 b1b7560bc..c5ab6a143 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 c3e084da3..14fd8f7d1 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 -- cgit v1.2.1