diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
commit | f4fae92b6768541e2952173c3d4b09040f95bf7e (patch) | |
tree | d8c5d93232235cd635f3310b4d95490df181ba2d /kmail/kmailicalIface.h | |
parent | 125c0a08265b75a133644d3b55f47e37c919f45d (diff) | |
download | tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip |
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/kmailicalIface.h')
-rw-r--r-- | kmail/kmailicalIface.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kmail/kmailicalIface.h b/kmail/kmailicalIface.h index fc1b7a815..91f15df53 100644 --- a/kmail/kmailicalIface.h +++ b/kmail/kmailicalIface.h @@ -75,18 +75,18 @@ k_dcop: virtual KMailICalIface::StorageFormat storageFormat( const TQString& resource ) = 0; virtual KURL getAttachment( const TQString& resource, - Q_UINT32 sernum, + TQ_UINT32 sernum, const TQString& filename ) = 0; virtual TQString attachmentMimetype( const TQString &resource, - Q_UINT32 sernum, + TQ_UINT32 sernum, const TQString &filename ) = 0; - virtual TQStringList listAttachments( const TQString &resource, Q_UINT32 sernum ) = 0; + virtual TQStringList listAttachments( const TQString &resource, TQ_UINT32 sernum ) = 0; /// Update a kolab storage entry. Returns the new mail serial number, /// or 0 if something went wrong. Can be used for adding as well. - virtual Q_UINT32 update( const TQString& resource, - Q_UINT32 sernum, + virtual TQ_UINT32 update( const TQString& resource, + TQ_UINT32 sernum, const TQString& subject, const TQString& plainTextBody, const TQMap<TQCString, TQString>& customHeaders, @@ -96,14 +96,14 @@ k_dcop: const TQStringList& deletedAttachments ) = 0; virtual bool deleteIncidenceKolab( const TQString& resource, - Q_UINT32 sernum ) = 0; + TQ_UINT32 sernum ) = 0; /// Return the number of mails that need to be looked at by incidencesKolab. /// This allows to call incidencesKolab in chunks. virtual int incidencesKolabCount( const TQString& mimetype /*ignored*/, const TQString& resource ) = 0; - virtual TQMap<Q_UINT32, TQString> incidencesKolab( const TQString& mimetype, + virtual TQMap<TQ_UINT32, TQString> incidencesKolab( const TQString& mimetype, const TQString& resource, int startIndex, int nbMessages ) = 0; @@ -140,8 +140,8 @@ k_dcop: k_dcop_signals: void incidenceAdded( const TQString& type, const TQString& folder, - Q_UINT32 sernum, int format, const TQString& entry ); - void asyncLoadResult( const TQMap<Q_UINT32, TQString>, const TQString& type, + TQ_UINT32 sernum, int format, const TQString& entry ); + void asyncLoadResult( const TQMap<TQ_UINT32, TQString>, const TQString& type, const TQString& folder ); void incidenceDeleted( const TQString& type, const TQString& folder, const TQString& uid ); @@ -164,14 +164,14 @@ inline TQDataStream& operator>>( TQDataStream& str, KMailICalIface::SubResource& inline TQDataStream& operator<<( TQDataStream& str, const KMailICalIface::StorageFormat& format ) { - Q_UINT32 foo = format; + TQ_UINT32 foo = format; str << foo; return str; } inline TQDataStream& operator>>( TQDataStream& str, KMailICalIface::StorageFormat& format ) { - Q_UINT32 foo; + TQ_UINT32 foo; str >> foo; format = ( KMailICalIface::StorageFormat )foo; return str; |