| 4081 | } |
| 4082 | |
| 4083 | QString NoteStore::getNoteSearchText(Guid guid, bool noteOnly, bool tokenizeForIndexing, QString authenticationToken) |
| 4084 | { |
| 4085 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 4086 | QByteArray params = NoteStore_getNoteSearchText_prepareParams(authenticationToken, guid, noteOnly, tokenizeForIndexing); |
| 4087 | QByteArray reply = askEvernote(url_, params); |
| 4088 | return NoteStore_getNoteSearchText_readReply(reply); |
| 4089 | } |
| 4090 | |
| 4091 | AsyncResult* NoteStore::getNoteSearchTextAsync(Guid guid, bool noteOnly, bool tokenizeForIndexing, QString authenticationToken) |
| 4092 | { |
nothing calls this directly
no test coverage detected