~ubuntu-branches/ubuntu/raring/kdepim-runtime/raring

« back to all changes in this revision

Viewing changes to resources/mixedmaildir/mixedmaildirstore.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2013-03-05 15:41:47 UTC
  • mto: This revision was merged to the branch mainline in revision 74.
  • Revision ID: package-import@ubuntu.com-20130305154147-nf3c394x2mc0b5v3
Tags: upstream-4.10.1
Import upstream version 4.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
307
307
    }
308
308
 
309
309
    MaildirContext( const Maildir &md )
310
 
      : mMaildir( md ), mIndexDataLoaded( false )
 
310
      : mMaildir( md ), mIndexDataLoaded( false ), mHasIndexData( false )
311
311
    {
312
312
    }
313
313
 
1803
1803
    }
1804
1804
 
1805
1805
    qint64 newOffset = mbox->appendEntry( item.payload<KMime::Message::Ptr>() );
1806
 
    if ( offset < 0 ) {
 
1806
    if ( newOffset < 0 ) {
1807
1807
      errorText = i18nc( "@info:status", "Cannot modify emails in folder %1",
1808
1808
                          collection.name() );
1809
1809
      kError() << errorText << "FolderType=" << folderType;