diff options
Diffstat (limited to 'karbon/tools/vpenciltool.cc')
-rw-r--r-- | karbon/tools/vpenciltool.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/karbon/tools/vpenciltool.cc b/karbon/tools/vpenciltool.cc index 9f2759b3..a15dbf2d 100644 --- a/karbon/tools/vpenciltool.cc +++ b/karbon/tools/vpenciltool.cc @@ -396,13 +396,13 @@ VPencilTool::showDialog() const } void -VPencilTool::setup( KActionCollection *collection ) +VPencilTool::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( "Pencil Tool" ), "14_pencil", TQt::SHIFT+TQt::Key_P, this, TQT_SLOT( activate() ), collection, name() ); + m_action = new TDERadioAction( i18n( "Pencil Tool" ), "14_pencil", TQt::SHIFT+TQt::Key_P, this, TQT_SLOT( activate() ), collection, name() ); m_action->setToolTip( i18n( "Pencil" ) ); m_action->setExclusiveGroup( "freehand" ); //m_ownAction = true; |