summaryrefslogtreecommitdiffstats
path: root/cervisia/cervisiashell.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
commit4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch)
treeb0a7cd1c184f0003c0292eb416ed27f674f9cc43 /cervisia/cervisiashell.cpp
parent1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff)
downloadtdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz
tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'cervisia/cervisiashell.cpp')
-rw-r--r--cervisia/cervisiashell.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/cervisia/cervisiashell.cpp b/cervisia/cervisiashell.cpp
index 33dac96c..eb0518e2 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(), SIGNAL( actionStatusText(const QString &) ),
- statusBar(), SLOT( message(const QString &) ) );
- connect( actionCollection(), SIGNAL( clearStatusText() ),
- statusBar(), SLOT( clear() ) );
+ connect( actionCollection(), TQT_SIGNAL( actionStatusText(const TQString &) ),
+ statusBar(), TQT_SLOT( message(const TQString &) ) );
+ connect( actionCollection(), TQT_SIGNAL( clearStatusText() ),
+ statusBar(), TQT_SLOT( clear() ) );
m_part->actionCollection()->setHighlightingEnabled(true);
- connect( m_part->actionCollection(), SIGNAL( actionStatusText(const QString &) ),
- statusBar(), SLOT( message(const QString &) ) );
- connect( m_part->actionCollection(), SIGNAL( clearStatusText() ),
- statusBar(), SLOT( clear() ) );
+ 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() ) );
createGUI( m_part );
@@ -92,19 +92,19 @@ void CervisiaShell::setupActions()
{
setStandardToolBarMenuEnabled( true );
- KAction *action = KStdAction::configureToolbars( this, SLOT(slotConfigureToolBars()),
+ KAction *action = KStdAction::configureToolbars( this, TQT_SLOT(slotConfigureToolBars()),
actionCollection() );
- QString hint = i18n("Allows you to configure the toolbar");
+ TQString hint = i18n("Allows you to configure the toolbar");
action->setToolTip( hint );
action->setWhatsThis( hint );
- action = KStdAction::keyBindings( this, SLOT(slotConfigureKeys()),
+ action = KStdAction::keyBindings( this, TQT_SLOT(slotConfigureKeys()),
actionCollection() );
hint = i18n("Allows you to customize the keybindings");
action->setToolTip( hint );
action->setWhatsThis( hint );
- action = KStdAction::quit( kapp, SLOT( quit() ), actionCollection() );
+ action = KStdAction::quit( kapp, TQT_SLOT( quit() ), actionCollection() );
hint = i18n("Exits Cervisia");
action->setToolTip( hint );
action->setWhatsThis( hint );
@@ -161,7 +161,7 @@ void CervisiaShell::slotConfigureToolBars()
{
saveMainWindowSettings( KGlobal::config(), autoSaveGroup() );
KEditToolbar dlg( factory() );
- connect(&dlg,SIGNAL(newToolbarConfig()),this,SLOT(slotNewToolbarConfig()));
+ connect(&dlg,TQT_SIGNAL(newToolbarConfig()),this,TQT_SLOT(slotNewToolbarConfig()));
dlg.exec();
}