From 11f3716a1c82b43f92dc32083101558f3ec47f27 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 --- src/makedlg.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/makedlg.cpp') diff --git a/src/makedlg.cpp b/src/makedlg.cpp index 287e5c6..cfd96f0 100644 --- a/src/makedlg.cpp +++ b/src/makedlg.cpp @@ -55,25 +55,25 @@ MakeDlg::MakeDlg(TQWidget* pParent, const char* szName) : // Create a new make front-end m_pMake = new MakeFrontend(); - connect(m_pMake, SIGNAL(dataReady(FrontendToken*)), this, - SLOT(slotShowOutput(FrontendToken*))); - connect(m_pMake, SIGNAL(finished(uint)), this, SLOT(slotFinished(uint))); + connect(m_pMake, TQ_SIGNAL(dataReady(FrontendToken*)), this, + TQ_SLOT(slotShowOutput(FrontendToken*))); + connect(m_pMake, TQ_SIGNAL(finished(uint)), this, TQ_SLOT(slotFinished(uint))); connect(m_pMake, - SIGNAL(error(const TQString&, const TQString&, const TQString&)), + TQ_SIGNAL(error(const TQString&, const TQString&, const TQString&)), this, - SLOT(slotAddError(const TQString&, const TQString&, const TQString&))); + TQ_SLOT(slotAddError(const TQString&, const TQString&, const TQString&))); // The Root URL control should browse directories m_pRootURL->setMode(KFile::Directory); // Handle URL links in the browser m_pOutputBrowser->setNotifyClick(true); - connect(m_pOutputBrowser, SIGNAL(urlClick(const TQString&)), this, - SLOT(slotBrowserClicked(const TQString&))); + connect(m_pOutputBrowser, TQ_SIGNAL(urlClick(const TQString&)), this, + TQ_SLOT(slotBrowserClicked(const TQString&))); // Handle selections in the error view - connect(m_pErrorView, SIGNAL(lineRequested(const TQString& , uint)), this, - SIGNAL(fileRequested(const TQString&, uint))); + connect(m_pErrorView, TQ_SIGNAL(lineRequested(const TQString& , uint)), this, + TQ_SIGNAL(fileRequested(const TQString&, uint))); // Do not allow duplicates in the command history m_pCommandHistory->setDuplicatesEnabled(false); -- cgit v1.2.1