diff options
Diffstat (limited to 'karbon/plugins/imagetool')
-rw-r--r-- | karbon/plugins/imagetool/vimagetool.cc | 6 | ||||
-rw-r--r-- | karbon/plugins/imagetool/vimagetool.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/karbon/plugins/imagetool/vimagetool.cc b/karbon/plugins/imagetool/vimagetool.cc index bc8c2001..090561a8 100644 --- a/karbon/plugins/imagetool/vimagetool.cc +++ b/karbon/plugins/imagetool/vimagetool.cc @@ -117,13 +117,13 @@ VImageTool::VInsertImageCmd::unexecute() } void -VImageTool::setup( KActionCollection *collection ) +VImageTool::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( "Image Tool" ), "14_image", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() ); + m_action = new TDERadioAction( i18n( "Image Tool" ), "14_image", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() ); m_action->setToolTip( i18n( "Image" ) ); m_action->setExclusiveGroup( "misc" ); //m_ownAction = true; diff --git a/karbon/plugins/imagetool/vimagetool.h b/karbon/plugins/imagetool/vimagetool.h index 65b187ea..4aa6f6be 100644 --- a/karbon/plugins/imagetool/vimagetool.h +++ b/karbon/plugins/imagetool/vimagetool.h @@ -39,7 +39,7 @@ public: virtual void activate(); virtual void deactivate(); - virtual void setup( KActionCollection *collection ); + virtual void setup( TDEActionCollection *collection ); virtual TQString uiname() { return i18n( "Image Tool" ); } virtual TQString contextHelp(); virtual TQString statusText(); |