diff options
Diffstat (limited to 'kresources/kolab/shared/resourcekolabbase.h')
-rw-r--r-- | kresources/kolab/shared/resourcekolabbase.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kresources/kolab/shared/resourcekolabbase.h b/kresources/kolab/shared/resourcekolabbase.h index 1bd8b9515..565be2675 100644 --- a/kresources/kolab/shared/resourcekolabbase.h +++ b/kresources/kolab/shared/resourcekolabbase.h @@ -81,7 +81,7 @@ public: // These are the methods called by KMail when the resource changes virtual bool fromKMailAddIncidence( const TQString& type, const TQString& resource, - Q_UINT32 sernum, + TQ_UINT32 sernum, int format, const TQString& data ) = 0; virtual void fromKMailDelIncidence( const TQString& type, @@ -97,7 +97,7 @@ public: virtual void fromKMailDelSubresource( const TQString& type, const TQString& resource ) = 0; - virtual void fromKMailAsyncLoadResult( const TQMap<Q_UINT32, TQString>& map, + virtual void fromKMailAsyncLoadResult( const TQMap<TQ_UINT32, TQString>& map, const TQString& type, const TQString& folder ) = 0; protected: @@ -119,7 +119,7 @@ protected: /// Get the mimetype attachments from a chunk of messages from this folder. /// Returns a TQMap with serialNumber/attachment pairs. - bool kmailIncidences( TQMap<Q_UINT32, TQString>& lst, const TQString& mimetype, + bool kmailIncidences( TQMap<TQ_UINT32, TQString>& lst, const TQString& mimetype, const TQString& resource, int startIndex, int nbMessages ) const; @@ -131,20 +131,20 @@ public: // for Contact /// be called by the resource after obtaining the incidence. /// The resource must delete the temp file. bool kmailGetAttachment( KURL& url, const TQString& resource, - Q_UINT32 sernum, + TQ_UINT32 sernum, const TQString& filename ) const; /** Get the mimetype of the specified attachment. */ bool kmailAttachmentMimetype( TQString &mimeType, TQString &resource, - Q_UINT32 sernum, const TQString &filename ) const; + TQ_UINT32 sernum, const TQString &filename ) const; /// List all attachments of a mail. bool kmailListAttachments( TQStringList &list, const TQString &resource, - Q_UINT32 sernum ) const; + TQ_UINT32 sernum ) const; protected: /// Delete an incidence. - bool kmailDeleteIncidence( const TQString& resource, Q_UINT32 sernum ); + bool kmailDeleteIncidence( const TQString& resource, TQ_UINT32 sernum ); KMailICalIface::StorageFormat kmailStorageFormat( const TQString& folder ) const; @@ -152,7 +152,7 @@ protected: /// Update an incidence. The list of attachments are URLs. /// The parameter sernum is updated with the right KMail serial number - bool kmailUpdate( const TQString& resource, Q_UINT32& sernum, + bool kmailUpdate( const TQString& resource, TQ_UINT32& sernum, const TQString& xml, const TQString& mimetype, const TQString& subject, |