diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/calltreemanager.cpp | |
parent | d399e3a2c6c365c540fe67bc648bacefe4cca707 (diff) | |
download | kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/calltreemanager.cpp')
-rw-r--r-- | src/calltreemanager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/calltreemanager.cpp b/src/calltreemanager.cpp index ac03cac..5ae0257 100644 --- a/src/calltreemanager.cpp +++ b/src/calltreemanager.cpp @@ -104,12 +104,12 @@ CallTreeDlg* CallTreeManager::addDialog() m_lstDialogs.append(pDlg); // Open an editor whenever a function name is double-clicked - connect(pDlg, SIGNAL(lineRequested(const TQString&, uint)), - this, SIGNAL(lineRequested(const TQString&, uint))); + connect(pDlg, TQ_SIGNAL(lineRequested(const TQString&, uint)), + this, TQ_SIGNAL(lineRequested(const TQString&, uint))); // Track the closing of the call tree dialog - connect(pDlg, SIGNAL(closed(const CallTreeDlg*)), this, - SLOT(slotRemoveDialog(const CallTreeDlg*))); + connect(pDlg, TQ_SIGNAL(closed(const CallTreeDlg*)), this, + TQ_SLOT(slotRemoveDialog(const CallTreeDlg*))); return pDlg; } |