~mzanetti/reminders-app/improve-sorting

« back to all changes in this revision

Viewing changes to src/plugin/Evernote/jobs/fetchnotesjob.cpp

  • Committer: Tarmac
  • Author(s): Michael Zanetti
  • Date: 2014-10-11 16:31:17 UTC
  • mfrom: (266.2.6 reminders-app-tags)
  • Revision ID: tarmac-20141011163117-k34jgx6jk5zizxpw
Add support for tags. Fixes: https://bugs.launchpad.net/bugs/1379747.

Approved by Riccardo Padovani, Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
    resultSpec.includeAttributes = true;
81
81
    resultSpec.__isset.includeAttributes = true;
82
82
 
 
83
    resultSpec.includeTagGuids = true;
 
84
    resultSpec.__isset.includeTagGuids = true;
 
85
 
83
86
    client()->findNotesMetadata(m_results, token().toStdString(), filter, start, end, resultSpec);
84
87
}
85
88