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/calltreedlg.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/calltreedlg.cpp') 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); -- cgit v1.2.1