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

« back to all changes in this revision

Viewing changes to kimap/idlejob.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:
115
115
      return;
116
116
 
117
117
    } else if ( response.content.size() > 2 ) {
118
 
        if ( response.content[2].toString() == "EXISTS" ) {
 
118
      if ( response.content[2].toString() == "EXISTS" ) {
119
119
        if ( d->messageCount >= 0 ) {
120
120
          d->emitStats();
121
121
        }
127
127
        }
128
128
 
129
129
        d->recentCount = response.content[1].toString().toInt();
 
130
      } else if ( response.content[2].toString() == "FETCH" ) {
 
131
        const qint64 uid = response.content[1].toString().toLongLong();
 
132
        Q_EMIT mailBoxMessageFlagsChanged( this, uid );
130
133
      }
131
134
    }
132
135