~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to mailcommon/filter/itemcontext.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
     * Creates an item context for the given @p item.
44
44
     * @p requestedPart the part requested for the item (Envelope, Header or CompleteMessage)
45
45
     */
46
 
    ItemContext( const Akonadi::Item &item, SearchRule::RequiredPart requestedPart );
 
46
    ItemContext( const Akonadi::Item &item, bool needsFullPayload );
47
47
 
48
48
    /**
49
49
     * Returns the item of the context.
94
94
    bool mNeedsPayloadStore;
95
95
    bool mNeedsFlagStore;
96
96
    bool mDeleteItem;
97
 
    SearchRule::RequiredPart mRequestedPart;
 
97
    bool mNeedsFullPayload;
98
98
};
99
99
 
100
100
}