summaryrefslogtreecommitdiffstats
path: root/src/kvirc/ui/kvi_frame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvirc/ui/kvi_frame.cpp')
-rw-r--r--src/kvirc/ui/kvi_frame.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kvirc/ui/kvi_frame.cpp b/src/kvirc/ui/kvi_frame.cpp
index f8e3a60..0fcdac8 100644
--- a/src/kvirc/ui/kvi_frame.cpp
+++ b/src/kvirc/ui/kvi_frame.cpp
@@ -115,8 +115,8 @@ KviFrame::KviFrame()
setUsesBigPixmaps(KVI_OPTION_BOOL(KviOption_boolUseBigIcons));
m_pMdi = new KviMdiManager(m_pSplitter,this,"mdi_manager");
- connect(m_pMdi,TQT_SIGNAL(enteredSdiMode()),this,TQT_SLOT(enteredSdiMode()));
- connect(m_pMdi,TQT_SIGNAL(leftSdiMode()),this,TQT_SLOT(leftSdiMode()));
+ connect(m_pMdi,TQ_SIGNAL(enteredSdiMode()),this,TQ_SLOT(enteredSdiMode()));
+ connect(m_pMdi,TQ_SIGNAL(leftSdiMode()),this,TQ_SLOT(leftSdiMode()));
// This theoretically had to exists before KviMdiManager (that uses enterSdiMode)
m_pMenuBar = new KviMenuBar(this,"main_menu_bar");
@@ -385,7 +385,7 @@ KviAccel * KviFrame::installAccelerators(TQWidget * wnd)
i++;
}
- connect(ac,TQT_SIGNAL(activated(int)),this,TQT_SLOT(accelActivated(int)));
+ connect(ac,TQ_SIGNAL(activated(int)),this,TQ_SLOT(accelActivated(int)));
return ac;
}
@@ -932,7 +932,7 @@ void KviFrame::closeEvent(TQCloseEvent *e)
{
dockExtension()->setPrevWindowState(windowState());
- TQTimer::singleShot( 0, this, TQT_SLOT(hide()) );
+ TQTimer::singleShot( 0, this, TQ_SLOT(hide()) );
}
return;
}
@@ -1043,8 +1043,8 @@ void KviFrame::fillToolBarsPopup(KviTalPopupMenu * p)
{
p->clear();
- disconnect(p,TQT_SIGNAL(activated(int)),this,TQT_SLOT(toolbarsPopupSelected(int))); // just to be sure
- connect(p,TQT_SIGNAL(activated(int)),this,TQT_SLOT(toolbarsPopupSelected(int)));
+ disconnect(p,TQ_SIGNAL(activated(int)),this,TQ_SLOT(toolbarsPopupSelected(int))); // just to be sure
+ connect(p,TQ_SIGNAL(activated(int)),this,TQ_SLOT(toolbarsPopupSelected(int)));
int id;
int cnt = 0;
@@ -1098,7 +1098,7 @@ void KviFrame::fillToolBarsPopup(KviTalPopupMenu * p)
}
if(cnt > 0)p->insertSeparator();
- p->insertItem(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_TOOLBAR)),__tr2qs("Customize..."),this,TQT_SLOT(customizeToolBars()));
+ p->insertItem(*(g_pIconManager->getSmallIcon(KVI_SMALLICON_TOOLBAR)),__tr2qs("Customize..."),this,TQ_SLOT(customizeToolBars()));
}
void KviFrame::customizeToolBars()
@@ -1337,7 +1337,7 @@ void KviFrame::hideEvent ( TQHideEvent * e)
{
executeInternalCommand(KVI_INTERNALCOMMAND_DOCKWIDGET_SHOW);
}
- TQTimer::singleShot( 0, this, TQT_SLOT(hide()) );
+ TQTimer::singleShot( 0, this, TQ_SLOT(hide()) );
}
}