mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 02:36:54 +02:00
typo fix for comment
This commit is contained in:
parent
7192ad301f
commit
effa2fc235
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ Socket::Socket(QObject* parent) :
|
||||||
// start our timer for the synchronization time interval
|
// start our timer for the synchronization time interval
|
||||||
_synTimer->start(_synInterval);
|
_synTimer->start(_synInterval);
|
||||||
|
|
||||||
// make sure we hear about errors and state chagnes from the underlying socket
|
// make sure we hear about errors and state changes from the underlying socket
|
||||||
connect(&_udpSocket, SIGNAL(error(QAbstractSocket::SocketError)),
|
connect(&_udpSocket, SIGNAL(error(QAbstractSocket::SocketError)),
|
||||||
this, SLOT(handleSocketError(QAbstractSocket::SocketError)));
|
this, SLOT(handleSocketError(QAbstractSocket::SocketError)));
|
||||||
connect(&_udpSocket, &QAbstractSocket::stateChanged, this, &Socket::handleStateChanged);
|
connect(&_udpSocket, &QAbstractSocket::stateChanged, this, &Socket::handleStateChanged);
|
||||||
|
|
Loading…
Reference in a new issue