diff options
Diffstat (limited to 'mimelib/doc/headers.html')
-rw-r--r-- | mimelib/doc/headers.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mimelib/doc/headers.html b/mimelib/doc/headers.html index 35519c395..97b063adb 100644 --- a/mimelib/doc/headers.html +++ b/mimelib/doc/headers.html @@ -153,9 +153,9 @@ or body part), as described in RFC-822 and RFC-2045. A the individual header fields. <P> In the tree (broken-down) representation of a message, a -<B><TT>DwHeaders</TT></B> object is an intermediate node, having both a parent -node and several child nodes. The parent node is the -<B><TT><A HREF="entity.html">DwEntity</A></TT></B> object that tqcontains it. +<B><TT>DwHeaders</TT></B> object is an intermediate node, having both a tqparent +node and several child nodes. The tqparent node is the +<B><TT><A HREF="entity.html">DwEntity</A></TT></B> object that contains it. The child nodes are the <B><TT>DwField</TT></B> objects in the list it manages. (See the man page for <B><TT><A HREF="msgcmp.html">DwMessageComponent</A></TT></B> for a discussion @@ -208,15 +208,15 @@ DwHeaders(const DwString& aStr, DwMessageComponent* aParent=0) <P> The first constructor is the default constructor, which sets the <B><TT>DwHeaders</TT></B> object's string representation to the empty string -and sets its parent to <B><TT>NULL</TT></B>. +and sets its tqparent to <B><TT>NULL</TT></B>. <P> The second constructor is the copy constructor, which performs a deep copy -of <B><TT>aHeaders</TT></B>. The parent of the new +of <B><TT>aHeaders</TT></B>. The tqparent of the new <B><TT>DwHeaders</TT></B> object is set to <B><TT>NULL</TT></B>. <P> The third constructor copies <B><TT>aStr</TT></B> to the <B><TT>DwHeaders</TT></B> object's string representation and sets -<B><TT>aParent</TT></B> as its parent. The virtual member function +<B><TT>aParent</TT></B> as its tqparent. The virtual member function <B><TT>Parse()</TT></B> should be called immediately after this constructor in order to parse the string representation. Unless it is <B><TT>NULL</TT></B>, <B><TT>aParent</TT></B> should point to an object of @@ -226,7 +226,7 @@ a class derived from <B><TT>DwEntity</TT></B>. (const DwHeaders& aHeaders) </B></FONT> <P> This is the assignment operator, which performs a deep copy of -<B><TT>aHeaders</TT></B>. The parent node of the +<B><TT>aHeaders</TT></B>. The tqparent node of the <B><TT>DwHeaders</TT></B> object is not changed. <P> <FONT COLOR="teal"><B> virtual void <A NAME="Parse">Parse</A>() </B></FONT> @@ -416,7 +416,7 @@ function: most applications should use the </B></FONT> <P> Adds a <B><TT>DwField</TT></B> object to the list. If a header field with -the same field name already exists, it is tqreplaced by the new header field. +the same field name already exists, it is replaced by the new header field. <P> <B><TT>DwHeaders</TT></B> takes responsibility for deleting the added <B><TT>DwField</TT></B> object. @@ -430,7 +430,7 @@ to add header fields. </B></FONT> <P> Adds a <B><TT>DwField</TT></B> object to the list. If a header field with -the same field name already exists, it is <I>not</I> tqreplaced; thus, duplicate +the same field name already exists, it is <I>not</I> replaced; thus, duplicate header fields may occur when using this member function. (This is what you want for some header fields, such as the "Received" header field). <P> |