2022-11-03 Fred Gleason <fredg@paravelsystems.com>

* Removed vestigal code for RDCatch control via TCP connection.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-11-03 12:44:29 -04:00
parent ae3542f9a4
commit 9161d9014e
22 changed files with 110 additions and 1325 deletions

View File

@@ -21,7 +21,6 @@
#include <QMessageBox>
#include <rdapplication.h>
#include <rdcatch_connect.h>
#include <rdcart_dialog.h>
#include <rdconf.h>
#include <rddb.h>
@@ -62,9 +61,6 @@ EditStation::EditStation(QString sname,QWidget *parent)
setWindowTitle("RDAdmin - "+tr("Host: ")+sname);
GetPrivateProfileString(RD_CONF_FILE,"Identity","Password",temp,"",255);
station_catch_connect=new RDCatchConnect(0,this);
station_catch_connect->connectHost(station_station->address().toString(),
RDCATCHD_TCP_PORT,temp);
//
// Validators
@@ -811,7 +807,9 @@ void EditStation::editDropboxesData()
{
ListDropboxes *list_conf=new ListDropboxes(station_station->name(),this);
list_conf->exec();
station_catch_connect->reloadDropboxes();
//
// FIXME: reload the dropbox!
//
delete list_conf;
}

View File

@@ -31,7 +31,6 @@
#include <rddialog.h>
#include <rdcardselector.h>
#include <rdcatch_connect.h>
#include <rdcombobox.h>
#include <rdripc.h>
#include <rdstation.h>
@@ -80,7 +79,6 @@ class EditStation : public RDDialog
QString HostPart(QString);
RDStation *station_station;
RDStation *station_cae_station;
RDCatchConnect *station_catch_connect;
QLabel *station_name_label;
QLineEdit *station_name_edit;
QLabel *station_short_name_label;