| 5139 | } |
| 5140 | |
| 5141 | Note NoteStore::copyNote(Guid noteGuid, Guid toNotebookGuid, QString authenticationToken) |
| 5142 | { |
| 5143 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5144 | QByteArray params = NoteStore_copyNote_prepareParams(authenticationToken, noteGuid, toNotebookGuid); |
| 5145 | QByteArray reply = askEvernote(url_, params); |
| 5146 | return NoteStore_copyNote_readReply(reply); |
| 5147 | } |
| 5148 | |
| 5149 | AsyncResult* NoteStore::copyNoteAsync(Guid noteGuid, Guid toNotebookGuid, QString authenticationToken) |
| 5150 | { |
nothing calls this directly
no test coverage detected