summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/msn/webcam.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/msn/webcam.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/msn/webcam.h')
-rw-r--r--kopete/protocols/msn/webcam.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kopete/protocols/msn/webcam.h b/kopete/protocols/msn/webcam.h
index 4dc72fae..4bcc4f59 100644
--- a/kopete/protocols/msn/webcam.h
+++ b/kopete/protocols/msn/webcam.h
@@ -33,7 +33,7 @@ class Webcam : public TransferContext
public:
enum Who { wProducer , wViewer };
- Webcam( Who who , const QString& to, Dispatcher *parent, Q_UINT32 sessionID);
+ Webcam( Who who , const TQString& to, Dispatcher *parent, Q_UINT32 sessionID);
~Webcam( );
virtual void processMessage(const Message& message);
@@ -44,12 +44,12 @@ class Webcam : public TransferContext
void sendBYEMessage();
private:
- void makeSIPMessage(const QString &message, Q_UINT8 XX=0, Q_UINT8 YY=9 , Q_UINT8 ZZ=0);
- void sendBigP2PMessage( const QByteArray& dataMessage );
+ void makeSIPMessage(const TQString &message, Q_UINT8 XX=0, Q_UINT8 YY=9 , Q_UINT8 ZZ=0);
+ void sendBigP2PMessage( const TQByteArray& dataMessage );
void closeAllOtherSockets();
- QString m_content;
+ TQString m_content;
- QString xml(uint session , uint rid);
+ TQString xml(uint session , uint rid);
int getAvailablePort();
@@ -60,14 +60,14 @@ class Webcam : public TransferContext
Who m_who;
- QString m_myAuth;
- QString m_peerAuth;
+ TQString m_myAuth;
+ TQString m_peerAuth;
MimicWrapper *m_mimic;
MSNWebcamDialog *m_widget;
- QValueList<KNetwork::KBufferedSocket* > m_allSockets;
- QMap<KNetwork::KBufferedSocket*, WebcamStatus> m_webcamStates;
+ TQValueList<KNetwork::KBufferedSocket* > m_allSockets;
+ TQMap<KNetwork::KBufferedSocket*, WebcamStatus> m_webcamStates;
int m_timerId;
int m_timerFps;
@@ -81,7 +81,7 @@ class Webcam : public TransferContext
void slotSocketConnected();
// void slotReadyWrite();
protected:
- virtual void timerEvent( QTimerEvent * );
+ virtual void timerEvent( TQTimerEvent * );
};
}