diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-13 00:46:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-13 00:46:47 +0000 |
commit | 67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 (patch) | |
tree | 5f52a9eada2e9f3654fc327d7c14dfef570a6ecb /mimelib/doc/entity.html | |
parent | 2ee4bf4fd5eff93b2fbef0ff8e8063edffc5da5c (diff) | |
download | tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.tar.gz tdepim-67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7.zip |
Initial conversion of kdepim to TQt
This will probably require some tweaking before it will build under Qt4,
however Qt3 builds are OK. Any alterations this commit makes to kdepim
behaviour under Qt3 are unintentional and should be fixed.
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'mimelib/doc/entity.html')
-rw-r--r-- | mimelib/doc/entity.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mimelib/doc/entity.html b/mimelib/doc/entity.html index 9a2d00187..c2f8d3161 100644 --- a/mimelib/doc/entity.html +++ b/mimelib/doc/entity.html @@ -47,15 +47,15 @@ protected: RFC-2045 defines an <I>entity</I> as either a <I>message</I> or a <I>body part</I>, both of which have a collection of headers and a <I>body</I>. In MIME++, an entity is represented by the class <B><TT>DwEntity</TT></B>, which -tqcontains both a <B><TT><A HREF="headers.html">DwHeaders</A></TT></B> object +contains both a <B><TT><A HREF="headers.html">DwHeaders</A></TT></B> object and a <B><TT><A HREF="body.html">DwBody</A></TT></B> object. <P> In the tree (broken-down) representation of message, a <B><TT>DwEntity</TT></B> object may be either a root node, having child nodes -but no parent node, or an intermediate node, having both a parent node and +but no tqparent node, or an intermediate node, having both a tqparent node and child nodes. A <B><TT>DwEntity</TT></B> object that is a root node must also be a <B><TT><A HREF="message.html">DwMessage</A></TT></B> object. If a -<B><TT>DwEntity</TT></B> object is an intermediate node, its parent must +<B><TT>DwEntity</TT></B> object is an intermediate node, its tqparent must be a <B><TT>DwBody</TT></B> object. The child nodes of a <B><TT>DwEntity</TT></B> object are the <B><TT>DwHeaders</TT></B> and <B><TT>DwBody</TT></B> objects it tqcontains. @@ -80,15 +80,15 @@ DwEntity(const DwString& aStr, DwMessageComponent* aParent=0) </B></FONT> <P> The first constructor is the default constructor, which sets the <B><TT>DwEntity</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>aEntity</TT></B>. The parent of the new +of <B><TT>aEntity</TT></B>. The tqparent of the new <B><TT>DwEntity</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>DwEntity</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 @@ -98,7 +98,7 @@ a class derived from <B><TT>DwBody</TT></B>. (const DwEntity& aEntity) </B></FONT> <P> This is the assignment operator, which performs a deep copy of -<B><TT>aEntity</TT></B>. The parent node of the <B><TT>DwEntity</TT></B> +<B><TT>aEntity</TT></B>. The tqparent node of the <B><TT>DwEntity</TT></B> object is not changed. <P> <FONT COLOR="teal"><B> virtual void <A NAME="Parse">Parse</A>() </B></FONT> |