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

« back to all changes in this revision

Viewing changes to akonadi/itemfetchscope.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg, Rohan Garg, Philip Muškovac
  • Date: 2013-11-23 17:36:44 UTC
  • mfrom: (1.1.102)
  • Revision ID: package-import@ubuntu.com-20131123173644-p5ow94192ezsny8g
Tags: 4:4.11.80-0ubuntu1
[ Rohan Garg ]
* New upstream beta release
  - Bump akonadi requirement to 1.10.45
  - Update install files
  - Update symbols

[ Philip Muškovac ]
* kdepimlibs-dev/-dbg breaks/replaces kdepim-runtime/-dbg (<< 4:4.11.80)

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
  return d->mCheckCachedPayloadPartsOnly;
121
121
}
122
122
 
123
 
 
124
123
ItemFetchScope::AncestorRetrieval ItemFetchScope::ancestorRetrieval() const
125
124
{
126
125
  return d->mAncestorDepth;
141
140
  return d->mFetchMtime;
142
141
}
143
142
 
 
143
void ItemFetchScope::setFetchGid( bool retrieveGid )
 
144
{
 
145
  d->mFetchGid = retrieveGid;
 
146
}
 
147
 
 
148
bool ItemFetchScope::fetchGid() const
 
149
{
 
150
  return d->mFetchGid;
 
151
}
 
152
 
144
153
void ItemFetchScope::setIgnoreRetrievalErrors( bool ignore )
145
154
{
146
155
  d->mIgnoreRetrievalErrors = ignore;
160
169
{
161
170
  return d->mChangedSince;
162
171
}
 
172
 
 
173
void ItemFetchScope::setFetchRemoteIdentification(bool retrieveRid)
 
174
{
 
175
  d->mFetchRid = retrieveRid;
 
176
}
 
177
 
 
178
bool ItemFetchScope::fetchRemoteIdentification() const
 
179
{
 
180
  return d->mFetchRid;
 
181
}