| 1948 | } |
| 1949 | |
| 1950 | qint32 NoteStore::updateTag(const Tag& tag, QString authenticationToken) |
| 1951 | { |
| 1952 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 1953 | QByteArray params = NoteStore_updateTag_prepareParams(authenticationToken, tag); |
| 1954 | QByteArray reply = askEvernote(url_, params); |
| 1955 | return NoteStore_updateTag_readReply(reply); |
| 1956 | } |
| 1957 | |
| 1958 | AsyncResult* NoteStore::updateTagAsync(const Tag& tag, QString authenticationToken) |
| 1959 | { |
no test coverage detected