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/calltreedlg.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/calltreedlg.cpp')
-rw-r--r-- | src/calltreedlg.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/calltreedlg.cpp b/src/calltreedlg.cpp index b0619f4..517fbba 100644 --- a/src/calltreedlg.cpp +++ b/src/calltreedlg.cpp @@ -70,12 +70,12 @@ CallTreeDlg::CallTreeDlg(TQWidget* pParent, const char* szName) : m_pPrefButton->setPixmap(GET_PIXMAP(ButtonPref)); // Open the location of a call - connect(m_pGraphWidget, SIGNAL(lineRequested(const TQString&, uint)), - this, SIGNAL(lineRequested(const TQString&, uint))); - connect(m_pCalledWidget, SIGNAL(lineRequested(const TQString&, uint)), - this, SIGNAL(lineRequested(const TQString&, uint))); - connect(m_pCallingWidget, SIGNAL(lineRequested(const TQString&, uint)), - this, SIGNAL(lineRequested(const TQString&, uint))); + connect(m_pGraphWidget, TQ_SIGNAL(lineRequested(const TQString&, uint)), + this, TQ_SIGNAL(lineRequested(const TQString&, uint))); + connect(m_pCalledWidget, TQ_SIGNAL(lineRequested(const TQString&, uint)), + this, TQ_SIGNAL(lineRequested(const TQString&, uint))); + connect(m_pCallingWidget, TQ_SIGNAL(lineRequested(const TQString&, uint)), + this, TQ_SIGNAL(lineRequested(const TQString&, uint))); m_pCallingWidget->setMode(TreeWidget::Calling); |