| 5019 | } |
| 5020 | |
| 5021 | qint32 NoteStore::expungeInactiveNotes(QString authenticationToken) |
| 5022 | { |
| 5023 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 5024 | QByteArray params = NoteStore_expungeInactiveNotes_prepareParams(authenticationToken); |
| 5025 | QByteArray reply = askEvernote(url_, params); |
| 5026 | return NoteStore_expungeInactiveNotes_readReply(reply); |
| 5027 | } |
| 5028 | |
| 5029 | AsyncResult* NoteStore::expungeInactiveNotesAsync(QString authenticationToken) |
| 5030 | { |
nothing calls this directly
no test coverage detected