| 601 | } |
| 602 | |
| 603 | Array * HTMLRenderer::htmlInlineAttachmentsForMessage(AbstractMessage * message) |
| 604 | { |
| 605 | Array * htmlInlineAttachments = Array::array(); |
| 606 | HTMLRendererIMAPDummyCallback * dataCallback = new HTMLRendererIMAPDummyCallback(); |
| 607 | String * ignoredResult = htmlForAbstractMessage(NULL, message, dataCallback, dataCallback, NULL, NULL, htmlInlineAttachments); |
| 608 | delete dataCallback; |
| 609 | dataCallback = NULL; |
| 610 | (void) ignoredResult; // remove unused variable warning. |
| 611 | return htmlInlineAttachments; |
| 612 | } |
| 613 | |
| 614 | Array * HTMLRenderer::requiredPartsForRendering(AbstractMessage * message) |
| 615 | { |
nothing calls this directly
no test coverage detected