| 105 | } |
| 106 | |
| 107 | void IMAPOperation::start() |
| 108 | { |
| 109 | if (session() == NULL) { |
| 110 | IMAPAsyncConnection * connection = mMainSession->sessionForFolder(mFolder, mUrgent); |
| 111 | setSession(connection); |
| 112 | } |
| 113 | session()->runOperation(this); |
| 114 | } |
| 115 | |
| 116 | struct progressContext { |
| 117 | unsigned int current; |
no test coverage detected