From 69cac65817d949cda2672ec4f0aa73d5e66a0ba1 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 22 Jun 2011 00:30:31 +0000 Subject: TQt4 port kdenetwork This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1237912 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- .../groupwise/libgroupwise/eventtransfer.h | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'kopete/protocols/groupwise/libgroupwise/eventtransfer.h') diff --git a/kopete/protocols/groupwise/libgroupwise/eventtransfer.h b/kopete/protocols/groupwise/libgroupwise/eventtransfer.h index d044fb55..f08e350e 100644 --- a/kopete/protocols/groupwise/libgroupwise/eventtransfer.h +++ b/kopete/protocols/groupwise/libgroupwise/eventtransfer.h @@ -47,7 +47,7 @@ public: Guid = 0x00000008, Flags = 0x00000010, Message = 0x00000020, - Status = 0x00000040, + tqStatus = 0x00000040, StatusText = 0x00000080 }; /** * Constructor @@ -55,14 +55,14 @@ public: * @param source the user generating the event. * @param timeStamp the time at which the event was received. */ - EventTransfer( const Q_UINT32 eventType, const TQString & source, TQDateTime timeStamp ); + EventTransfer( const TQ_UINT32 eventType, const TQString & source, TQDateTime timeStamp ); ~EventTransfer(); /** - * Access the bitmask that describes the transfer's contents. Use @ref Contents to determine what it contains + * Access the bittqmask that describes the transfer's contents. Use @ref Contents to determine what it tqcontains */ - Q_UINT32 contents(); + TQ_UINT32 contents(); /** - * Convenience accessors to see what the transfer contains + * Convenience accessors to see what the transfer tqcontains */ bool hasEventType(); bool hasSource(); @@ -70,7 +70,7 @@ public: bool hasGuid(); bool hasFlags(); bool hasMessage(); - bool hasStatus(); + bool hastqStatus(); bool hasStatusText(); /** @@ -81,29 +81,29 @@ public: TQString source(); TQDateTime timeStamp(); GroupWise::ConferenceGuid guid(); - Q_UINT32 flags(); + TQ_UINT32 flags(); TQString message(); - Q_UINT16 status(); + TQ_UINT16 status(); TQString statusText(); /** * Mutators to set the transfer's contents */ void setGuid( const GroupWise::ConferenceGuid & guid ); - void setFlags( const Q_UINT32 flags ); + void setFlags( const TQ_UINT32 flags ); void setMessage( const TQString & message ); - void setStatus( const Q_UINT16 status ); + void settqStatus( const TQ_UINT16 status ); void setStatusText( const TQString & statusText); private: - Q_UINT32 m_contentFlags; + TQ_UINT32 m_contentFlags; int m_eventType; TQString m_source; TQDateTime m_timeStamp; GroupWise::ConferenceGuid m_guid; - Q_UINT32 m_flags; + TQ_UINT32 m_flags; TQString m_message; - Q_UINT16 m_status; + TQ_UINT16 m_status; TQString m_statusText; }; -- cgit v1.2.1