~ubuntu-branches/ubuntu/quantal/akonadi/quantal

« back to all changes in this revision

Viewing changes to server/src/storage/dbconfig.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Philip Muškovac
  • Date: 2011-07-16 16:41:20 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20110716164120-ox4q9lqooq6jfr52
Tags: 1.6.0-0ubuntu1
New upstream release 

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 
51
51
  if ( mSizeThreshold < 0 )
52
52
    mSizeThreshold = 0;
53
 
 
54
 
  mUseExternalPayloadFile = true;
55
 
  mUseExternalPayloadFile = settings.value( QLatin1String( "General/ExternalPayload" ), mUseExternalPayloadFile ).toBool();
56
53
}
57
54
 
58
55
DbConfig::~DbConfig()
115
112
{
116
113
  return mSizeThreshold;
117
114
}
118
 
 
119
 
bool DbConfig::useExternalPayloadFile() const
120
 
{
121
 
  return mUseExternalPayloadFile;
122
 
}