From 67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 13 Apr 2011 00:46:47 +0000 Subject: 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 --- mimelib/doc/entity.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'mimelib/doc/entity.html') 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 entity as either a message or a body part, both of which have a collection of headers and a body. In MIME++, an entity is represented by the class DwEntity, which -tqcontains both a DwHeaders object +contains both a DwHeaders object 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 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 DwEntity object that is a root node must also be a DwMessage object. If a -DwEntity object is an intermediate node, its parent must +DwEntity object is an intermediate node, its tqparent must be a DwBody object. The child nodes of a DwEntity object are the DwHeaders and DwBody objects it tqcontains. @@ -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 parent to NULL. +and sets its tqparent to NULL.

The second constructor is the copy constructor, which performs a deep copy -of aEntity. The parent of the new +of aEntity. The tqparent 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 parent. The virtual member function +aParent as its tqparent. 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 parent node of the DwEntity +aEntity. The tqparent node of the DwEntity object is not changed.

virtual void Parse() -- cgit v1.2.1