summaryrefslogtreecommitdiffstats
path: root/kmail/kmailicalIface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmailicalIface.h')
-rw-r--r--kmail/kmailicalIface.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kmail/kmailicalIface.h b/kmail/kmailicalIface.h
index fc1b7a81..91f15df5 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;