| 608 | } |
| 609 | |
| 610 | IMAPFetchContentOperation * IMAPAsyncSession::fetchMessageByNumberOperation(String * folder, uint32_t number, bool urgent) |
| 611 | { |
| 612 | IMAPFetchContentOperation * op = new IMAPFetchContentOperation(); |
| 613 | op->setMainSession(this); |
| 614 | op->setFolder(folder); |
| 615 | op->setNumber(number); |
| 616 | op->setUrgent(urgent); |
| 617 | op->autorelease(); |
| 618 | return op; |
| 619 | } |
| 620 | |
| 621 | IMAPCustomCommandOperation * IMAPAsyncSession::customCommand(String *command, bool urgent) |
| 622 | { |
nothing calls this directly
no test coverage detected