summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/groupwise/libgroupwise/eventtransfer.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/groupwise/libgroupwise/eventtransfer.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 335d4593..d044fb55 100644
--- a/kopete/protocols/groupwise/libgroupwise/eventtransfer.h
+++ b/kopete/protocols/groupwise/libgroupwise/eventtransfer.h
@@ -18,8 +18,8 @@
#ifndef GW_EVENTTRANSFER_H
#define GW_EVENTTRANSFER_H
-#include <qcstring.h>
-#include <qdatetime.h>
+#include <tqcstring.h>
+#include <tqdatetime.h>
#include "gwerror.h"
@@ -55,7 +55,7 @@ public:
* @param source the user generating the event.
* @param timeStamp the time at which the event was received.
*/
- EventTransfer( const Q_UINT32 eventType, const QString & source, QDateTime timeStamp );
+ EventTransfer( const Q_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
@@ -78,33 +78,33 @@ public:
*/
TransferType type() { return Transfer::EventTransfer; }
int eventType();
- QString source();
- QDateTime timeStamp();
+ TQString source();
+ TQDateTime timeStamp();
GroupWise::ConferenceGuid guid();
Q_UINT32 flags();
- QString message();
+ TQString message();
Q_UINT16 status();
- QString statusText();
+ TQString statusText();
/**
* Mutators to set the transfer's contents
*/
void setGuid( const GroupWise::ConferenceGuid & guid );
void setFlags( const Q_UINT32 flags );
- void setMessage( const QString & message );
+ void setMessage( const TQString & message );
void setStatus( const Q_UINT16 status );
- void setStatusText( const QString & statusText);
+ void setStatusText( const TQString & statusText);
private:
Q_UINT32 m_contentFlags;
int m_eventType;
- QString m_source;
- QDateTime m_timeStamp;
+ TQString m_source;
+ TQDateTime m_timeStamp;
GroupWise::ConferenceGuid m_guid;
Q_UINT32 m_flags;
- QString m_message;
+ TQString m_message;
Q_UINT16 m_status;
- QString m_statusText;
+ TQString m_statusText;
};
#endif