summaryrefslogtreecommitdiffstats
path: root/kdbg/ttywnd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdbg/ttywnd.cpp')
-rw-r--r--kdbg/ttywnd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdbg/ttywnd.cpp b/kdbg/ttywnd.cpp
index 4d489f6..734f0ef 100644
--- a/kdbg/ttywnd.cpp
+++ b/kdbg/ttywnd.cpp
@@ -47,7 +47,7 @@ STTY::STTY() :
{
::fcntl(m_masterfd, F_SETFL, O_NDELAY);
m_outNotifier = new TQSocketNotifier(m_masterfd, TQSocketNotifier::Read);
- connect(m_outNotifier, SIGNAL(activated(int)), SLOT(outReceived(int)));
+ connect(m_outNotifier, TQ_SIGNAL(activated(int)), TQ_SLOT(outReceived(int)));
} else {
m_slavetty = TQString();
}
@@ -169,7 +169,7 @@ TQString TTYWindow::activate()
m_tty = 0;
return TQString();
} else {
- connect(m_tty, SIGNAL(output(char*,int)), SLOT(slotAppend(char*,int)));
+ connect(m_tty, TQ_SIGNAL(output(char*,int)), TQ_SLOT(slotAppend(char*,int)));
return ttyName;
}
}
@@ -226,7 +226,7 @@ TQPopupMenu* TTYWindow::createPopupMenu(const TQPoint& pos)
{
TQPopupMenu* menu = TQTextEdit::createPopupMenu(pos);
menu->insertSeparator();
- menu->insertItem(i18n("&Clear"), this, SLOT(slotClear()));
+ menu->insertItem(i18n("&Clear"), this, TQ_SLOT(slotClear()));
return menu;
}