diff options
Diffstat (limited to 'karbon/tools/vrotatetool.cc')
-rw-r--r-- | karbon/tools/vrotatetool.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/karbon/tools/vrotatetool.cc b/karbon/tools/vrotatetool.cc index 5f39a293..f8d341dc 100644 --- a/karbon/tools/vrotatetool.cc +++ b/karbon/tools/vrotatetool.cc @@ -160,13 +160,13 @@ VRotateTool::recalc() } void -VRotateTool::setup( KActionCollection *collection ) +VRotateTool::setup( TDEActionCollection *collection ) { - m_action = static_cast<KRadioAction *>(collection -> action( name() ) ); + m_action = static_cast<TDERadioAction *>(collection -> action( name() ) ); if( m_action == 0 ) { - m_action = new KRadioAction( i18n( "Rotate Tool" ), "14_rotate", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() ); + m_action = new TDERadioAction( i18n( "Rotate Tool" ), "14_rotate", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() ); m_action->setToolTip( i18n( "Rotate" ) ); m_action->setExclusiveGroup( "manipulation" ); //m_ownAction = true; |