See if there are any ink notes in this list of resources
| 986 | |
| 987 | // See if there are any ink notes in this list of resources |
| 988 | void CommunicationManager::checkForInkNotes(QList<Resource> &resources, QString shard, QString authToken) { |
| 989 | for (int i=0; i<resources.size(); i++) { |
| 990 | Resource *r = &resources[i]; |
| 991 | QString mime = ""; |
| 992 | if (r->mime.isSet()) |
| 993 | mime = r->mime; |
| 994 | if (mime == "application/vnd.evernote.ink") { |
| 995 | downloadInkNoteImage(r->guid, r, shard, authToken); |
| 996 | } |
| 997 | } |
| 998 | } |
| 999 | |
| 1000 | |
| 1001 |