summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/eventtransfer.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/groupwise/libgroupwise/eventtransfer.h')
-rw-r--r--kopete/protocols/groupwise/libgroupwise/eventtransfer.h26
1 files changed, 13 insertions, 13 deletions
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;
};