diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-31 22:20:37 +0900 |
commit | b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/frontend.cpp | |
parent | 3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff) | |
download | kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.tar.gz kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/frontend.cpp')
-rw-r--r-- | src/frontend.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
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*))); } /** |