summaryrefslogtreecommitdiffstats
path: root/src/makedlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/makedlg.cpp')
-rw-r--r--src/makedlg.cpp18
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);