~ubuntu-branches/ubuntu/trusty/kdepimlibs/trusty

« back to all changes in this revision

Viewing changes to akonadi/calendar/incidencefetchjob_p.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2014-04-02 11:20:40 UTC
  • mfrom: (1.1.111)
  • Revision ID: package-import@ubuntu.com-20140402112040-comlxst9ou0jlnd0
Tags: 4:4.12.97-0ubuntu1
New upstream release candidate

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    CollectionFetchJob *fetch = qobject_cast<CollectionFetchJob*>(job);
57
57
    Q_ASSERT(fetch);
58
58
    foreach(const Collection &col, fetch->collections()) {
59
 
        if (!m_mimeTypeChecker.isWantedCollection(col))
 
59
        if (!m_mimeTypeChecker.isWantedCollection(col) || col.isVirtual())
60
60
            continue;
61
61
        ItemFetchJob *itemFetch = new ItemFetchJob(col, this);
62
62
        itemFetch->fetchScope().fetchFullPayload(true);