diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:35 +0900 |
commit | 5cccb18e084303566a42c629b5b0f464f9133830 (patch) | |
tree | 0cf6ea5755a19623dee021b7e5dee34cfa69e1e6 /kdbg/dbgdriver.cpp | |
parent | b171e1b204c6444f044548a36b13f6baab3fc38d (diff) | |
download | kdbg-5cccb18e084303566a42c629b5b0f464f9133830.tar.gz kdbg-5cccb18e084303566a42c629b5b0f464f9133830.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdbg/dbgdriver.cpp')
-rw-r--r-- | kdbg/dbgdriver.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kdbg/dbgdriver.cpp b/kdbg/dbgdriver.cpp index 04c7270..3f9f1f6 100644 --- a/kdbg/dbgdriver.cpp +++ b/kdbg/dbgdriver.cpp @@ -36,10 +36,10 @@ DebuggerDriver::DebuggerDriver() : // m_promptLastChar and m_promptMinLen must also be set. // debugger process - connect(this, SIGNAL(receivedStdout(TDEProcess*,char*,int)), - SLOT(slotReceiveOutput(TDEProcess*,char*,int))); - connect(this, SIGNAL(wroteStdin(TDEProcess*)), SLOT(slotCommandRead(TDEProcess*))); - connect(this, SIGNAL(processExited(TDEProcess*)), SLOT(slotExited(TDEProcess*))); + connect(this, TQ_SIGNAL(receivedStdout(TDEProcess*,char*,int)), + TQ_SLOT(slotReceiveOutput(TDEProcess*,char*,int))); + connect(this, TQ_SIGNAL(wroteStdin(TDEProcess*)), TQ_SLOT(slotCommandRead(TDEProcess*))); + connect(this, TQ_SIGNAL(processExited(TDEProcess*)), TQ_SLOT(slotExited(TDEProcess*))); } DebuggerDriver::~DebuggerDriver() |