summaryrefslogtreecommitdiffstats
path: root/cervisia/cervisiashell.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:10:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-20 19:37:16 +0900
commitd3656a49e67074e23e8df5daef0f585199b0a8da (patch)
treea4f8ca60d997f3342a31a8901e11cdb89ab5f270 /cervisia/cervisiashell.cpp
parent34281174eaef4065e90b49b327f3763b04dd5854 (diff)
downloadtdesdk-d3656a49e67074e23e8df5daef0f585199b0a8da.tar.gz
tdesdk-d3656a49e67074e23e8df5daef0f585199b0a8da.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b0c86264e0cd10a0d3a47de3b05be453d9417bcd)
Diffstat (limited to 'cervisia/cervisiashell.cpp')
-rw-r--r--cervisia/cervisiashell.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/cervisia/cervisiashell.cpp b/cervisia/cervisiashell.cpp
index 7cc0cb17..b267bb75 100644
--- a/cervisia/cervisiashell.cpp
+++ b/cervisia/cervisiashell.cpp
@@ -62,15 +62,15 @@ CervisiaShell::CervisiaShell( const char *name )
// Magic needed for status texts
//
actionCollection()->setHighlightingEnabled(true);
- connect( actionCollection(), TQT_SIGNAL( actionStatusText(const TQString &) ),
- statusBar(), TQT_SLOT( message(const TQString &) ) );
- connect( actionCollection(), TQT_SIGNAL( clearStatusText() ),
- statusBar(), TQT_SLOT( clear() ) );
+ connect( actionCollection(), TQ_SIGNAL( actionStatusText(const TQString &) ),
+ statusBar(), TQ_SLOT( message(const TQString &) ) );
+ connect( actionCollection(), TQ_SIGNAL( clearStatusText() ),
+ statusBar(), TQ_SLOT( clear() ) );
m_part->actionCollection()->setHighlightingEnabled(true);
- connect( m_part->actionCollection(), TQT_SIGNAL( actionStatusText(const TQString &) ),
- statusBar(), TQT_SLOT( message(const TQString &) ) );
- connect( m_part->actionCollection(), TQT_SIGNAL( clearStatusText() ),
- statusBar(), TQT_SLOT( clear() ) );
+ connect( m_part->actionCollection(), TQ_SIGNAL( actionStatusText(const TQString &) ),
+ statusBar(), TQ_SLOT( message(const TQString &) ) );
+ connect( m_part->actionCollection(), TQ_SIGNAL( clearStatusText() ),
+ statusBar(), TQ_SLOT( clear() ) );
createGUI( m_part );
@@ -92,19 +92,19 @@ void CervisiaShell::setupActions()
{
setStandardToolBarMenuEnabled( true );
- TDEAction *action = KStdAction::configureToolbars( this, TQT_SLOT(slotConfigureToolBars()),
+ TDEAction *action = KStdAction::configureToolbars( this, TQ_SLOT(slotConfigureToolBars()),
actionCollection() );
TQString hint = i18n("Allows you to configure the toolbar");
action->setToolTip( hint );
action->setWhatsThis( hint );
- action = KStdAction::keyBindings( this, TQT_SLOT(slotConfigureKeys()),
+ action = KStdAction::keyBindings( this, TQ_SLOT(slotConfigureKeys()),
actionCollection() );
hint = i18n("Allows you to customize the keybindings");
action->setToolTip( hint );
action->setWhatsThis( hint );
- action = KStdAction::quit( kapp, TQT_SLOT( quit() ), actionCollection() );
+ action = KStdAction::quit( kapp, TQ_SLOT( quit() ), actionCollection() );
hint = i18n("Exits Cervisia");
action->setToolTip( hint );
action->setWhatsThis( hint );
@@ -161,7 +161,7 @@ void CervisiaShell::slotConfigureToolBars()
{
saveMainWindowSettings( TDEGlobal::config(), autoSaveGroup() );
KEditToolbar dlg( factory() );
- connect(&dlg,TQT_SIGNAL(newToolbarConfig()),this,TQT_SLOT(slotNewToolbarConfig()));
+ connect(&dlg,TQ_SIGNAL(newToolbarConfig()),this,TQ_SLOT(slotNewToolbarConfig()));
dlg.exec();
}