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/makedlg.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/makedlg.cpp')
-rw-r--r-- | src/makedlg.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
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); |