summaryrefslogtreecommitdiffstats
path: root/src/kvirc/ui/kvi_statusbarapplet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvirc/ui/kvi_statusbarapplet.cpp')
-rw-r--r--src/kvirc/ui/kvi_statusbarapplet.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/kvirc/ui/kvi_statusbarapplet.cpp b/src/kvirc/ui/kvi_statusbarapplet.cpp
index 2f4413b..3a23bd3 100644
--- a/src/kvirc/ui/kvi_statusbarapplet.cpp
+++ b/src/kvirc/ui/kvi_statusbarapplet.cpp
@@ -155,9 +155,9 @@ KviStatusBarAwayIndicator::KviStatusBarAwayIndicator(KviStatusBar * pParent,KviS
: KviStatusBarApplet(pParent,pDescriptor)
{
m_bAwayOnAllContexts = false;
- connect(pParent->frame(),TQT_SIGNAL(activeContextChanged()),this,TQT_SLOT(updateDisplay()));
- connect(pParent->frame(),TQT_SIGNAL(activeContextStateChanged()),this,TQT_SLOT(updateDisplay()));
- connect(pParent->frame(),TQT_SIGNAL(activeConnectionAwayStateChanged()),this,TQT_SLOT(updateDisplay()));
+ connect(pParent->frame(),TQ_SIGNAL(activeContextChanged()),this,TQ_SLOT(updateDisplay()));
+ connect(pParent->frame(),TQ_SIGNAL(activeContextStateChanged()),this,TQ_SLOT(updateDisplay()));
+ connect(pParent->frame(),TQ_SIGNAL(activeConnectionAwayStateChanged()),this,TQ_SLOT(updateDisplay()));
updateDisplay();
@@ -191,7 +191,7 @@ void KviStatusBarAwayIndicator::toggleContext()
void KviStatusBarAwayIndicator::fillContextPopup(KviTalPopupMenu *p)
{
- int id = p->insertItem(__tr2qs("Apply to all IRC Contexts"),this,TQT_SLOT(toggleContext()));
+ int id = p->insertItem(__tr2qs("Apply to all IRC Contexts"),this,TQ_SLOT(toggleContext()));
p->setItemChecked(id,m_bAwayOnAllContexts);
}
@@ -266,9 +266,9 @@ not_connected:
KviStatusBarLagIndicator::KviStatusBarLagIndicator(KviStatusBar * pParent,KviStatusBarAppletDescriptor *pDescriptor)
: KviStatusBarApplet(pParent,pDescriptor)
{
- connect(pParent->frame(),TQT_SIGNAL(activeContextChanged()),this,TQT_SLOT(updateDisplay()));
- connect(pParent->frame(),TQT_SIGNAL(activeContextStateChanged()),this,TQT_SLOT(updateDisplay()));
- connect(pParent->frame(),TQT_SIGNAL(activeConnectionLagChanged()),this,TQT_SLOT(updateDisplay()));
+ connect(pParent->frame(),TQ_SIGNAL(activeContextChanged()),this,TQ_SLOT(updateDisplay()));
+ connect(pParent->frame(),TQ_SIGNAL(activeContextStateChanged()),this,TQ_SLOT(updateDisplay()));
+ connect(pParent->frame(),TQ_SIGNAL(activeConnectionLagChanged()),this,TQ_SLOT(updateDisplay()));
updateDisplay();
@@ -419,7 +419,7 @@ void KviStatusBarClock::timerEvent(TQTimerEvent *)
void KviStatusBarClock::fillContextPopup(KviTalPopupMenu * p)
{
- int id = p->insertItem("UTC",this,TQT_SLOT(toggleUtc()));
+ int id = p->insertItem("UTC",this,TQ_SLOT(toggleUtc()));
p->setItemChecked(id,m_bUtc);
}
@@ -500,7 +500,7 @@ void KviStatusBarConnectionTimer::toggleTotal()
void KviStatusBarConnectionTimer::fillContextPopup(KviTalPopupMenu *p)
{
- int id = p->insertItem(__tr2qs("Show total connection time"),this,TQT_SLOT(toggleTotal()));
+ int id = p->insertItem(__tr2qs("Show total connection time"),this,TQ_SLOT(toggleTotal()));
p->setItemChecked(id,m_bTotal);
}