diff options
Diffstat (limited to 'kmail/kmailicalifaceimpl.h')
-rw-r--r-- | kmail/kmailicalifaceimpl.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kmail/kmailicalifaceimpl.h b/kmail/kmailicalifaceimpl.h index c0308f928..ae2d1d6ec 100644 --- a/kmail/kmailicalifaceimpl.h +++ b/kmail/kmailicalifaceimpl.h @@ -31,7 +31,7 @@ your version. */ -/** @file This file contains the class KMailICalIfaceImpl which actually +/** @file This file tqcontains the class KMailICalIfaceImpl which actually * implements the ICal (DCOP) interface for KMail. */ @@ -95,8 +95,8 @@ public: /// given the subject as Subject: header. /// Returns the new mail serial number, /// or 0 if something went wrong, - Q_UINT32 update( const TQString& resource, - Q_UINT32 sernum, + TQ_UINT32 update( const TQString& resource, + TQ_UINT32 sernum, const TQString& subject, const TQString& plainTextBody, const TQMap<TQCString, TQString>& customHeaders, @@ -106,10 +106,10 @@ public: const TQStringList& deletedAttachments ); bool deleteIncidenceKolab( const TQString& resource, - Q_UINT32 sernum ); + TQ_UINT32 sernum ); int incidencesKolabCount( const TQString& mimetype, const TQString& resource ); - TQMap<Q_UINT32, TQString> incidencesKolab( const TQString& mimetype, + TQMap<TQ_UINT32, TQString> incidencesKolab( const TQString& mimetype, const TQString& resource, int startIndex, int nbMessages ); @@ -122,14 +122,14 @@ public: // "Get" an attachment. This actually saves the attachment in a file // and returns a URL to it KURL getAttachment( const TQString& resource, - Q_UINT32 sernum, + TQ_UINT32 sernum, const TQString& filename ); TQString attachmentMimetype( const TQString &resource, - Q_UINT32 sernum, + TQ_UINT32 sernum, const TQString &filename ); - TQStringList listAttachments( const TQString &resource, Q_UINT32 sernum ); + TQStringList listAttachments( const TQString &resource, TQ_UINT32 sernum ); bool removeSubresource( const TQString& ); @@ -195,7 +195,7 @@ public: /** Find message matching a given UID. */ KMMessage* findMessageByUID( const TQString& uid, KMFolder* folder ); /** Find message matching a given serial number. */ - static KMMessage* findMessageBySerNum( Q_UINT32 serNum, KMFolder* folder ); + static KMMessage* findMessageBySerNum( TQ_UINT32 serNum, KMFolder* folder ); /** Convenience function to delete a message. */ void deleteMsg( KMMessage* msg ); @@ -231,8 +231,8 @@ public slots: void readConfig(); void slotFolderRemoved( KMFolder* folder ); - void slotIncidenceAdded( KMFolder* folder, Q_UINT32 sernum ); - void slotIncidenceDeleted( KMFolder* folder, Q_UINT32 sernum ); + void slotIncidenceAdded( KMFolder* folder, TQ_UINT32 sernum ); + void slotIncidenceDeleted( KMFolder* folder, TQ_UINT32 sernum ); void slotRefresh( const TQString& type); // Called when a folder is made readonly or readwrite, or renamed, @@ -281,7 +281,7 @@ private: bool lookupByName ); bool deleteAttachment( KMMessage& msg, const TQString& attachmentURL ); - Q_UINT32 addIncidenceKolab( KMFolder& folder, + TQ_UINT32 addIncidenceKolab( KMFolder& folder, const TQString& subject, const TQString& plainTextBody, const TQMap<TQCString, TQString>& customHeaders, @@ -344,8 +344,8 @@ private: * Since these are transient attributes of only a small but changing number * of incidences they are not encapsulated in a struct or somesuch. */ - TQMap<TQString, Q_UINT32> mUIDToSerNum; - TQMap<Q_UINT32, bool> mTheUnGetMes; + TQMap<TQString, TQ_UINT32> mUIDToSerNum; + TQMap<TQ_UINT32, bool> mTheUnGetMes; TQMap<TQString, TQString> mPendingUpdates; TQMap<TQString, bool> mInTransit; static TQMap<TQString, TQString> *mSubResourceUINamesMap; |