summaryrefslogtreecommitdiffstats
path: root/src/kile/kiletoolmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kiletoolmanager.cpp')
-rw-r--r--src/kile/kiletoolmanager.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kile/kiletoolmanager.cpp b/src/kile/kiletoolmanager.cpp
index 818a2e5..c8babba 100644
--- a/src/kile/kiletoolmanager.cpp
+++ b/src/kile/kiletoolmanager.cpp
@@ -114,8 +114,8 @@ namespace KileTool
m_nTimeout(to)
{
m_timer = new TQTimer(this);
- connect(m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(enableClear()));
- connect(stop, TQT_SIGNAL(activated()), this, TQT_SLOT(stop()));
+ connect(m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(enableClear()));
+ connect(stop, TQ_SIGNAL(activated()), this, TQ_SLOT(stop()));
}
Manager::~Manager() {}
@@ -242,11 +242,11 @@ namespace KileTool
tool->setInfo(m_ki);
tool->setConfig(m_config);
- connect(tool, TQT_SIGNAL(message(int, const TQString &, const TQString &)), m_log, TQT_SLOT(printMsg(int, const TQString &, const TQString &)));
- connect(tool, TQT_SIGNAL(output(const TQString &)), m_output, TQT_SLOT(receive(const TQString &)));
- connect(tool, TQT_SIGNAL(done(Base*,int)), this, TQT_SLOT(done(Base*, int)));
- connect(tool, TQT_SIGNAL(start(Base* )), this, TQT_SLOT(started(Base*)));
- connect(tool, TQT_SIGNAL(requestSaveAll(bool, bool)), this, TQT_SIGNAL(requestSaveAll(bool, bool)));
+ connect(tool, TQ_SIGNAL(message(int, const TQString &, const TQString &)), m_log, TQ_SLOT(printMsg(int, const TQString &, const TQString &)));
+ connect(tool, TQ_SIGNAL(output(const TQString &)), m_output, TQ_SLOT(receive(const TQString &)));
+ connect(tool, TQ_SIGNAL(done(Base*,int)), this, TQ_SLOT(done(Base*, int)));
+ connect(tool, TQ_SIGNAL(start(Base* )), this, TQ_SLOT(started(Base*)));
+ connect(tool, TQ_SIGNAL(requestSaveAll(bool, bool)), this, TQ_SIGNAL(requestSaveAll(bool, bool)));
}
void Manager::started(Base *tool)
@@ -258,7 +258,7 @@ namespace KileTool
{
if ( tool == m_queue.tool() ) m_queue.dequeue();
m_stop->setEnabled(false);
- TQTimer::singleShot(100, this, TQT_SLOT(runNextInQueue()));
+ TQTimer::singleShot(100, this, TQ_SLOT(runNextInQueue()));
}
}