aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2015-01-31 05:03:56 -0800
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2015-01-31 05:04:11 -0800
commit7d2e6ccccc52e5a7eeeede524fa4165383218cae (patch)
treef73ff757b988c418ad77c65e3545311c3b51a797
parent69cb97a3d4c77e76af7642c2d5ab6b26c51adc68 (diff)
Fixed virtual methods
-rwxr-xr-xsrc/core/imap/MCIMAPSession.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/imap/MCIMAPSession.h b/src/core/imap/MCIMAPSession.h
index 66aed26c..d0a310b7 100755
--- a/src/core/imap/MCIMAPSession.h
+++ b/src/core/imap/MCIMAPSession.h
@@ -86,8 +86,8 @@ namespace mailcore {
virtual void appendMessageWithCustomFlagsAndDate(String * folder, Data * messageData, MessageFlag flags, Array * customFlags, time_t date,
IMAPProgressCallback * progressCallback, uint32_t * createdUID, ErrorCode * pError);
- void copyMessages(String * folder, IndexSet * uidSet, String * destFolder,
- HashMap ** pUidMapping, ErrorCode * pError);
+ virtual void copyMessages(String * folder, IndexSet * uidSet, String * destFolder,
+ HashMap ** pUidMapping, ErrorCode * pError);
virtual void expunge(String * folder, ErrorCode * pError);
@@ -155,7 +155,7 @@ namespace mailcore {
virtual void login(ErrorCode * pError);
- IMAPIdentity * identity(IMAPIdentity * clientIdentity, ErrorCode * pError);
+ virtual IMAPIdentity * identity(IMAPIdentity * clientIdentity, ErrorCode * pError);
virtual IndexSet * capability(ErrorCode * pError);