From b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Dec 2023 16:37:45 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27) --- src/frontend.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/frontend.cpp') diff --git a/src/frontend.cpp b/src/frontend.cpp index ab12459..52c97c2 100644 --- a/src/frontend.cpp +++ b/src/frontend.cpp @@ -46,16 +46,16 @@ Frontend::Frontend(uint nRecordSize, bool bAutoDelete) : TDEProcess(), m_nRecordSize(nRecordSize) { // Parse data on the standard output - connect(this, SIGNAL(receivedStdout(TDEProcess*, char*, int)), this, - SLOT(slotReadStdout(TDEProcess*, char*, int))); + connect(this, TQ_SIGNAL(receivedStdout(TDEProcess*, char*, int)), this, + TQ_SLOT(slotReadStdout(TDEProcess*, char*, int))); // Parse data on the standard error - connect(this, SIGNAL(receivedStderr(TDEProcess*, char*, int)), this, - SLOT(slotReadStderr(TDEProcess*, char*, int))); + connect(this, TQ_SIGNAL(receivedStderr(TDEProcess*, char*, int)), this, + TQ_SLOT(slotReadStderr(TDEProcess*, char*, int))); // Delete the process object when the process exits - connect(this, SIGNAL(processExited(TDEProcess*)), this, - SLOT(slotProcessExit(TDEProcess*))); + connect(this, TQ_SIGNAL(processExited(TDEProcess*)), this, + TQ_SLOT(slotProcessExit(TDEProcess*))); } /** -- cgit v1.2.3