diff -r 139d4b7b2938 -r 99bcbff212ad emailservices/nmclientapi/src/nmapimailbox.cpp --- a/emailservices/nmclientapi/src/nmapimailbox.cpp Mon May 24 21:02:02 2010 +0300 +++ b/emailservices/nmclientapi/src/nmapimailbox.cpp Fri May 28 13:56:43 2010 +0300 @@ -15,6 +15,8 @@ * */ +#include "emailtrace.h" + #include #include "nmapimailbox_p.h" @@ -28,6 +30,8 @@ */ NmApiMailbox::NmApiMailbox() { + NM_FUNCTION; + d = new NmApiMailboxPrivate(); } @@ -37,7 +41,7 @@ NmApiMailbox::NmApiMailbox(const NmApiMailbox &nmApiMailbox) : d(nmApiMailbox.d) { - + NM_FUNCTION; } /*! @@ -45,7 +49,7 @@ */ NmApiMailbox::~NmApiMailbox() { - + NM_FUNCTION; } /*! @@ -53,6 +57,8 @@ */ NmApiMailbox &NmApiMailbox::operator=(const NmApiMailbox &mailbox) { + NM_FUNCTION; + if (this != &mailbox) { d = mailbox.d; } @@ -64,6 +70,8 @@ */ bool NmApiMailbox::operator==(const NmApiMailbox &mailbox) { + NM_FUNCTION; + bool returnValue = false; if (d == mailbox.d) { returnValue = true; @@ -76,6 +84,8 @@ */ quint64 NmApiMailbox::id() const { + NM_FUNCTION; + return d->id; } @@ -84,6 +94,8 @@ */ QString NmApiMailbox::address() const { + NM_FUNCTION; + return d->address; } @@ -92,6 +104,8 @@ */ QString NmApiMailbox::name() const { + NM_FUNCTION; + return d->name; } @@ -100,6 +114,8 @@ */ void NmApiMailbox::setId(quint64 id) { + NM_FUNCTION; + d->id = id; } @@ -108,6 +124,8 @@ */ void NmApiMailbox::setAddress(const QString &address) { + NM_FUNCTION; + d->address = address; } @@ -116,6 +134,8 @@ */ void NmApiMailbox::setName(const QString &name) { + NM_FUNCTION; + d->name = name; }