bug fix
This commit is contained in:
parent
d8fabf2e52
commit
b00a299082
1 changed files with 2 additions and 2 deletions
|
@ -47,10 +47,10 @@ class CSocket : public QObject
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CSocket::CSocket(CChannel* pNewChannel) : pChannel(pNewChannel),
|
CSocket(CChannel* pNewChannel) : pChannel(pNewChannel),
|
||||||
SocketDevice(QSocketDevice::Datagram /* UDP */), bIsClient(true)
|
SocketDevice(QSocketDevice::Datagram /* UDP */), bIsClient(true)
|
||||||
{Init();}
|
{Init();}
|
||||||
CSocket::CSocket(CChannelSet* pNewChannelSet, QObject* pNServP) :
|
CSocket(CChannelSet* pNewChannelSet, QObject* pNServP) :
|
||||||
pChannelSet(pNewChannelSet), pServer ( pNServP ),
|
pChannelSet(pNewChannelSet), pServer ( pNServP ),
|
||||||
SocketDevice(QSocketDevice::Datagram /* UDP */), bIsClient(false)
|
SocketDevice(QSocketDevice::Datagram /* UDP */), bIsClient(false)
|
||||||
{Init();}
|
{Init();}
|
||||||
|
|
Loading…
Reference in a new issue