| 6949 | } |
| 6950 | |
| 6951 | AsyncResult* NoteStore::createSharedNotebookAsync(const SharedNotebook& sharedNotebook, QString authenticationToken) |
| 6952 | { |
| 6953 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 6954 | QByteArray params = NoteStore_createSharedNotebook_prepareParams(authenticationToken, sharedNotebook); |
| 6955 | return new AsyncResult(url_, params, NoteStore_createSharedNotebook_readReplyAsync); |
| 6956 | } |
| 6957 | |
| 6958 | QByteArray NoteStore_updateSharedNotebook_prepareParams(QString authenticationToken, const SharedNotebook& sharedNotebook) |
| 6959 | { |
nothing calls this directly
no test coverage detected