| 1363 | } |
| 1364 | |
| 1365 | AsyncResult* NoteStore::expungeNotebookAsync(Guid guid, QString authenticationToken) |
| 1366 | { |
| 1367 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1368 | QByteArray params = NoteStore_expungeNotebook_prepareParams(authenticationToken, guid); |
| 1369 | return new AsyncResult(url_, params, NoteStore_expungeNotebook_readReplyAsync); |
| 1370 | } |
| 1371 | |
| 1372 | QByteArray NoteStore_listTags_prepareParams(QString authenticationToken) |
| 1373 | { |
nothing calls this directly
no test coverage detected