2019-11-26 Fred Gleason <fredg@paravelsystems.com>

* Removed 'Q3Socket' dependencies from 'RDCatchConnect'.
This commit is contained in:
Fred Gleason
2019-11-26 14:51:06 -08:00
parent 5b36f066b4
commit 6964405e0e
3 changed files with 9 additions and 8 deletions

View File

@@ -40,14 +40,14 @@ RDCatchConnect::RDCatchConnect(int serial,QObject *parent)
//
// TCP Connection
//
cc_socket=new Q3Socket(this,"cc_socket");
cc_socket=new QTcpSocket(this);
connect(cc_socket,SIGNAL(connected()),this,SLOT(connectedData()));
connect(cc_socket,SIGNAL(readyRead()),this,SLOT(readyData()));
//
// Start the heartbeat timer
//
cc_heartbeat_timer=new QTimer(this,"cc_heartbeat_timer");
cc_heartbeat_timer=new QTimer(this);
connect(cc_heartbeat_timer,SIGNAL(timeout()),
this,SLOT(heartbeatTimeoutData()));
cc_heartbeat_timer->start(CC_HEARTBEAT_INTERVAL,true);