aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/abstract/MCOHTMLRendererIMAPDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/objc/abstract/MCOHTMLRendererIMAPDelegate.h')
-rw-r--r--src/objc/abstract/MCOHTMLRendererIMAPDelegate.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/objc/abstract/MCOHTMLRendererIMAPDelegate.h b/src/objc/abstract/MCOHTMLRendererIMAPDelegate.h
index a127ec27..9ec665da 100644
--- a/src/objc/abstract/MCOHTMLRendererIMAPDelegate.h
+++ b/src/objc/abstract/MCOHTMLRendererIMAPDelegate.h
@@ -33,18 +33,23 @@
start fetching the attachment.
It will return the data synchronously if it has already fetched it.
*/
-- (NSData *) MCOAbstractMessage:(MCOAbstractMessage *)msg dataForIMAPPart:(MCOIMAPPart *)part folder:(NSString *)folder;
+- (NSData *) abstractMessage:(MCOAbstractMessage *)msg dataForIMAPPart:(MCOIMAPPart *)part folder:(NSString *)folder;
/**
The delegate method will notify the delegate to start fetching the given part.
It will be used to render an attachment that cannot be previewed.
*/
-- (void) MCOAbstractMessage:(MCOAbstractMessage *)msg prefetchAttachmentIMAPPart:(MCOIMAPPart *)part folder:(NSString *)folder;
+- (void) abstractMessage:(MCOAbstractMessage *)msg prefetchAttachmentIMAPPart:(MCOIMAPPart *)part folder:(NSString *)folder;
/**
The delegate method will notify the delegate to start fetching the given part.
It will be used to render an attachment that can be previewed.
*/
+- (void) abstractMessage:(MCOAbstractMessage *)msg prefetchImageIMAPPart:(MCOIMAPPart *)part folder:(NSString *)folder;
+
+// deprecated versions of the delegate methods.
+- (NSData *) MCOAbstractMessage:(MCOAbstractMessage *)msg dataForIMAPPart:(MCOIMAPPart *)part folder:(NSString *)folder;
+- (void) MCOAbstractMessage:(MCOAbstractMessage *)msg prefetchAttachmentIMAPPart:(MCOIMAPPart *)part folder:(NSString *)folder;
- (void) MCOAbstractMessage:(MCOAbstractMessage *)msg prefetchImageIMAPPart:(MCOIMAPPart *)part folder:(NSString *)folder;
@end