~ubuntu-branches/ubuntu/oneiric/kdepimlibs/oneiric-updates

« back to all changes in this revision

Viewing changes to akonadi/changerecorder_p.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2011-09-07 17:25:05 UTC
  • mfrom: (1.1.65)
  • Revision ID: package-import@ubuntu.com-20110907172505-tympra4h81qbmv9k
Tags: 4:4.7.1-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
    void addToStream( QDataStream &stream, const NotificationMessage &msg )
166
166
    {
167
167
        stream << msg.sessionId();
168
 
        stream << msg.type();
169
 
        stream << msg.operation();
170
 
        stream << msg.uid();
 
168
        stream << int(msg.type());
 
169
        stream << int(msg.operation());
 
170
        stream << qulonglong(msg.uid());
171
171
        stream << msg.remoteId();
172
172
        stream << msg.resource();
173
 
        stream << msg.parentCollection();
174
 
        stream << msg.parentDestCollection();
 
173
        stream << qulonglong(msg.parentCollection());
 
174
        stream << qulonglong(msg.parentDestCollection());
175
175
        stream << msg.mimeType();
176
176
        stream << msg.itemParts();
177
177
    }