mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-19 17:11:15 +02:00
2025-04-28 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up numerous 'no such signal' runtime errors. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
//
|
||||
// Rivendell PAD Data Repeater
|
||||
//
|
||||
// (C) Copyright 2018-2024 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2018-2025 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
@@ -38,7 +38,7 @@ Repeater::Repeater(const QString &src_unix_addr,uint16_t serv_port,
|
||||
// Client Server
|
||||
//
|
||||
pad_client_disconnect_mapper=new QSignalMapper(this);
|
||||
connect(pad_client_disconnect_mapper,SIGNAL(mapped(int)),
|
||||
connect(pad_client_disconnect_mapper,SIGNAL(mappedInt(int)),
|
||||
this,SLOT(clientDisconnected(int)));
|
||||
|
||||
pad_client_server=new QTcpServer(this);
|
||||
@@ -53,7 +53,7 @@ Repeater::Repeater(const QString &src_unix_addr,uint16_t serv_port,
|
||||
// Source Server
|
||||
//
|
||||
pad_source_disconnect_mapper=new QSignalMapper(this);
|
||||
connect(pad_source_disconnect_mapper,SIGNAL(mapped(int)),
|
||||
connect(pad_source_disconnect_mapper,SIGNAL(mappedInt(int)),
|
||||
this,SLOT(sourceDisconnected(int)));
|
||||
|
||||
pad_source_server=new RDUnixServer(this);
|
||||
|
Reference in New Issue
Block a user