| 4676 | } |
| 4677 | |
| 4678 | qint32 NoteStore::deleteNote(Guid guid, QString authenticationToken) |
| 4679 | { |
| 4680 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4681 | QByteArray params = NoteStore_deleteNote_prepareParams(authenticationToken, guid); |
| 4682 | QByteArray reply = askEvernote(url_, params); |
| 4683 | return NoteStore_deleteNote_readReply(reply); |
| 4684 | } |
| 4685 | |
| 4686 | AsyncResult* NoteStore::deleteNoteAsync(Guid guid, QString authenticationToken) |
| 4687 | { |
nothing calls this directly
no test coverage detected