emailservices/nmclientapi/src/nmapiemailservice.cpp
changeset 20 ecc8def7944a
parent 18 578830873419
child 23 2dc6caa42ec3
equal deleted inserted replaced
18:578830873419 20:ecc8def7944a
    30     if (mEngine) {
    30     if (mEngine) {
    31         uninitialise();
    31         uninitialise();
    32     }
    32     }
    33 }
    33 }
    34 
    34 
    35 bool NmEmailService::envelope(
    35 bool NmEmailService::getEnvelope(
    36     const quint64 mailboxId,
    36     const quint64 mailboxId,
    37     const quint64 folderId,
    37     const quint64 folderId,
    38     const quint64 envelopeId,
    38     const quint64 envelopeId,
    39     NmMessageEnvelope &envelope)
    39     NmMessageEnvelope &envelope)
    40 {
    40 {
    42         return false;
    42         return false;
    43     }
    43     }
    44     return mEngine->envelopeById(mailboxId, folderId, envelopeId, envelope);
    44     return mEngine->envelopeById(mailboxId, folderId, envelopeId, envelope);
    45 }
    45 }
    46 
    46 
    47 bool NmEmailService::mailbox(const quint64 mailboxId, NmMailbox &mailboxInfo)
    47 bool NmEmailService::getMailbox(const quint64 mailboxId, NmMailbox &mailboxInfo)
    48 {
    48 {
    49     if (!mEngine) {
    49     if (!mEngine) {
    50         return false;
    50         return false;
    51     }
    51     }
    52     return mEngine->mailboxById(mailboxId, mailboxInfo);
    52     return mEngine->mailboxById(mailboxId, mailboxInfo);