| 197 | } |
| 198 | |
| 199 | POPOperation * POPAsyncSession::deleteMessagesOperation(IndexSet * indexes) |
| 200 | { |
| 201 | POPDeleteMessagesOperation * op = new POPDeleteMessagesOperation(); |
| 202 | op->setSession(this); |
| 203 | op->setMessageIndexes(indexes); |
| 204 | op->autorelease(); |
| 205 | return op; |
| 206 | } |
| 207 | |
| 208 | POPOperation * POPAsyncSession::disconnectOperation() |
| 209 | { |
nothing calls this directly
no test coverage detected