emailservices/nmclientapi/src/nmapimailbox.cpp
changeset 76 38bf5461e270
parent 48 10eaf342f539
equal deleted inserted replaced
74:6c59112cfd31 76:38bf5461e270
    65  */
    65  */
    66 bool NmApiMailbox::operator==(const NmApiMailbox &mailbox)
    66 bool NmApiMailbox::operator==(const NmApiMailbox &mailbox)
    67 {
    67 {
    68     NM_FUNCTION;
    68     NM_FUNCTION;
    69     
    69     
    70     bool returnValue = false;
    70     bool returnValue(false);
    71     if (d == mailbox.d) {
    71     if (d == mailbox.d) {
    72         returnValue = true;
    72         returnValue = true;
    73     }
    73     }
    74     return returnValue;
    74     return returnValue;
    75 }
    75 }