summaryrefslogtreecommitdiffstats
path: root/lib/libtqtrla/src/tqtrla.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <tpearson@raptorengineering.com>2025-05-25 12:00:08 -0500
committerTimothy Pearson <tpearson@raptorengineering.com>2025-05-25 12:00:08 -0500
commit35529a2fb04893ca887dd11c700e22889ff7696c (patch)
tree790f12e94fde94e12a169eb830269d3cef995aaa /lib/libtqtrla/src/tqtrla.cpp
parentf04fc7aa71dbb321613db418978a853aa1b479ad (diff)
downloadulab-35529a2fb04893ca887dd11c700e22889ff7696c.tar.gz
ulab-35529a2fb04893ca887dd11c700e22889ff7696c.zip
Fix libtqtrla FTBFS on newer TDE version
Diffstat (limited to 'lib/libtqtrla/src/tqtrla.cpp')
-rw-r--r--lib/libtqtrla/src/tqtrla.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libtqtrla/src/tqtrla.cpp b/lib/libtqtrla/src/tqtrla.cpp
index 195871e..dfdb850 100644
--- a/lib/libtqtrla/src/tqtrla.cpp
+++ b/lib/libtqtrla/src/tqtrla.cpp
@@ -56,7 +56,7 @@ namespace KParts
// Create timers
m_connectionTimer = new TQTimer(this);
- connect(m_connectionTimer, SIGNAL(timeout()), this, SLOT(finishConnectingToServer()));
+ connect(m_connectionTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(finishConnectingToServer()));
}
RemoteInstrumentPart::~RemoteInstrumentPart() {
@@ -183,7 +183,7 @@ namespace KParts
}
if (!m_socket) {
m_socket = new TDEKerberosClientSocket(this);
- connect(m_socket, TQT_SIGNAL(statusMessageUpdated(const TQString&)), this, TQT_SLOT(setStatusMessage(const TQString&) ));
+ connect(m_socket, TQ_SIGNAL(statusMessageUpdated(const TQString&)), this, TQ_SLOT(setStatusMessage(const TQString&) ));
}
m_hostName = server;
m_socket->setServiceName("ulab");