| 3232 | } |
| 3233 | |
| 3234 | NoteCollectionCounts NoteStore::findNoteCounts(const NoteFilter& filter, bool withTrash, QString authenticationToken) |
| 3235 | { |
| 3236 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 3237 | QByteArray params = NoteStore_findNoteCounts_prepareParams(authenticationToken, filter, withTrash); |
| 3238 | QByteArray reply = askEvernote(url_, params); |
| 3239 | return NoteStore_findNoteCounts_readReply(reply); |
| 3240 | } |
| 3241 | |
| 3242 | AsyncResult* NoteStore::findNoteCountsAsync(const NoteFilter& filter, bool withTrash, QString authenticationToken) |
| 3243 | { |
nothing calls this directly
no test coverage detected