| 5147 | } |
| 5148 | |
| 5149 | AsyncResult* NoteStore::copyNoteAsync(Guid noteGuid, Guid toNotebookGuid, QString authenticationToken) |
| 5150 | { |
| 5151 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5152 | QByteArray params = NoteStore_copyNote_prepareParams(authenticationToken, noteGuid, toNotebookGuid); |
| 5153 | return new AsyncResult(url_, params, NoteStore_copyNote_readReplyAsync); |
| 5154 | } |
| 5155 | |
| 5156 | QByteArray NoteStore_listNoteVersions_prepareParams(QString authenticationToken, Guid noteGuid) |
| 5157 | { |
nothing calls this directly
no test coverage detected