| 1129 | } |
| 1130 | |
| 1131 | AsyncResult* NoteStore::createNotebookAsync(const Notebook& notebook, QString authenticationToken) |
| 1132 | { |
| 1133 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1134 | QByteArray params = NoteStore_createNotebook_prepareParams(authenticationToken, notebook); |
| 1135 | return new AsyncResult(url_, params, NoteStore_createNotebook_readReplyAsync); |
| 1136 | } |
| 1137 | |
| 1138 | QByteArray NoteStore_updateNotebook_prepareParams(QString authenticationToken, const Notebook& notebook) |
| 1139 | { |
nothing calls this directly
no test coverage detected