| 4450 | } |
| 4451 | |
| 4452 | AsyncResult* NoteStore::createNoteAsync(const Note& note, QString authenticationToken) |
| 4453 | { |
| 4454 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4455 | QByteArray params = NoteStore_createNote_prepareParams(authenticationToken, note); |
| 4456 | return new AsyncResult(url_, params, NoteStore_createNote_readReplyAsync); |
| 4457 | } |
| 4458 | |
| 4459 | QByteArray NoteStore_updateNote_prepareParams(QString authenticationToken, const Note& note) |
| 4460 | { |
nothing calls this directly
no test coverage detected