diff options
author | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2014-03-13 22:17:03 -0700 |
---|---|---|
committer | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2014-03-13 22:17:03 -0700 |
commit | 16b4ecc4f9e7ff9ea8f0f30e33bf4f3f13359309 (patch) | |
tree | ed1b3b1db344ed983f6887490ea269f040e510cb /src/objc | |
parent | bb7e982f96f3364f727705a949c0353dbfb5b458 (diff) |
Fixed return type
Diffstat (limited to 'src/objc')
-rw-r--r-- | src/objc/smtp/MCOSMTPSession.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objc/smtp/MCOSMTPSession.mm b/src/objc/smtp/MCOSMTPSession.mm index b6ae6a4f..17dc5057 100644 --- a/src/objc/smtp/MCOSMTPSession.mm +++ b/src/objc/smtp/MCOSMTPSession.mm @@ -124,7 +124,7 @@ MCO_OBJC_SYNTHESIZE_SCALAR(dispatch_queue_t, dispatch_queue_t, setDispatchQueue, return result; } -- (MCOOperation *) checkAccountOperationWithFrom:(MCOAddress *)from +- (MCOSMTPOperation *) checkAccountOperationWithFrom:(MCOAddress *)from { mailcore::SMTPOperation *coreOp = MCO_NATIVE_INSTANCE->checkAccountOperation(MCO_FROM_OBJC(mailcore::Address, from)); MCOSMTPOperation * result = [[[MCOSMTPOperation alloc] initWithMCOperation:coreOp] autorelease]; |