summaryrefslogtreecommitdiffstats
path: root/karbon/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'karbon/plugins')
-rw-r--r--karbon/plugins/flattenpath/flattenpathplugin.cc2
-rw-r--r--karbon/plugins/imagetool/vimagetool.cc6
-rw-r--r--karbon/plugins/imagetool/vimagetool.h2
-rw-r--r--karbon/plugins/insertknots/insertknotsplugin.cc2
-rw-r--r--karbon/plugins/roundcorners/roundcornersplugin.cc2
-rw-r--r--karbon/plugins/shadoweffect/shadoweffectplugin.cc2
-rw-r--r--karbon/plugins/whirlpinch/whirlpinchplugin.cc2
-rw-r--r--karbon/plugins/zoomtool/vzoomtool.cc6
-rw-r--r--karbon/plugins/zoomtool/vzoomtool.h2
9 files changed, 13 insertions, 13 deletions
diff --git a/karbon/plugins/flattenpath/flattenpathplugin.cc b/karbon/plugins/flattenpath/flattenpathplugin.cc
index aa5fb3cc..78c2a66e 100644
--- a/karbon/plugins/flattenpath/flattenpathplugin.cc
+++ b/karbon/plugins/flattenpath/flattenpathplugin.cc
@@ -36,7 +36,7 @@ K_EXPORT_COMPONENT_FACTORY( karbon_flattenpathplugin, FlattenPathPluginFactory(
FlattenPathPlugin::FlattenPathPlugin( KarbonView *parent, const char* name, const TQStringList & )
: Plugin( TQT_TQOBJECT(parent), name )
{
- new KAction(
+ new TDEAction(
i18n( "&Flatten Path..." ), "14_flatten", 0, this,
TQT_SLOT( slotFlattenPath() ), actionCollection(), "path_flatten" );
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();
diff --git a/karbon/plugins/insertknots/insertknotsplugin.cc b/karbon/plugins/insertknots/insertknotsplugin.cc
index 55fcde76..19a1e4d5 100644
--- a/karbon/plugins/insertknots/insertknotsplugin.cc
+++ b/karbon/plugins/insertknots/insertknotsplugin.cc
@@ -35,7 +35,7 @@ K_EXPORT_COMPONENT_FACTORY( karbon_insertknotsplugin, InsertKnotsPluginFactory(
InsertKnotsPlugin::InsertKnotsPlugin( KarbonView *parent, const char* name, const TQStringList & ) : Plugin( TQT_TQOBJECT(parent), name )
{
- new KAction(
+ new TDEAction(
i18n( "&Insert Knots..." ), "14_insertknots", 0, this,
TQT_SLOT( slotInsertKnots() ), actionCollection(), "path_insert_knots" );
diff --git a/karbon/plugins/roundcorners/roundcornersplugin.cc b/karbon/plugins/roundcorners/roundcornersplugin.cc
index 28ede19d..1841c5eb 100644
--- a/karbon/plugins/roundcorners/roundcornersplugin.cc
+++ b/karbon/plugins/roundcorners/roundcornersplugin.cc
@@ -34,7 +34,7 @@ K_EXPORT_COMPONENT_FACTORY( karbon_roundcornersplugin, VRoundCornersPluginFactor
VRoundCornersPlugin::VRoundCornersPlugin( KarbonView *parent, const char* name, const TQStringList & ) : Plugin( TQT_TQOBJECT(parent), name )
{
- new KAction(
+ new TDEAction(
i18n( "&Round Corners..." ), "14_roundcorners", 0, this,
TQT_SLOT( slotRoundCorners() ), actionCollection(), "path_round_corners" );
diff --git a/karbon/plugins/shadoweffect/shadoweffectplugin.cc b/karbon/plugins/shadoweffect/shadoweffectplugin.cc
index fc6da1da..a837e51e 100644
--- a/karbon/plugins/shadoweffect/shadoweffectplugin.cc
+++ b/karbon/plugins/shadoweffect/shadoweffectplugin.cc
@@ -40,7 +40,7 @@ K_EXPORT_COMPONENT_FACTORY( karbon_shadoweffectplugin, ShadowEffectPluginFactory
ShadowEffectPlugin::ShadowEffectPlugin( KarbonView *parent, const char* name, const TQStringList & )
: Plugin( TQT_TQOBJECT(parent), name )
{
- new KAction(
+ new TDEAction(
i18n( "&Shadow Effect..." ), "shadowRB", 0, this,
TQT_SLOT( slotShadowEffect() ), actionCollection(), "object_shadow" );
diff --git a/karbon/plugins/whirlpinch/whirlpinchplugin.cc b/karbon/plugins/whirlpinch/whirlpinchplugin.cc
index ec8e7075..d2b91a18 100644
--- a/karbon/plugins/whirlpinch/whirlpinchplugin.cc
+++ b/karbon/plugins/whirlpinch/whirlpinchplugin.cc
@@ -40,7 +40,7 @@ K_EXPORT_COMPONENT_FACTORY( karbon_whirlpinchplugin, WhirlPinchPluginFactory( "k
WhirlPinchPlugin::WhirlPinchPlugin( KarbonView *parent, const char* name, const TQStringList & ) : Plugin( TQT_TQOBJECT(parent), name )
{
- new KAction(
+ new TDEAction(
i18n( "&Whirl/Pinch..." ), "14_whirl", 0, this,
TQT_SLOT( slotWhirlPinch() ), actionCollection(), "path_whirlpinch" );
diff --git a/karbon/plugins/zoomtool/vzoomtool.cc b/karbon/plugins/zoomtool/vzoomtool.cc
index 01a80aaa..beb19a68 100644
--- a/karbon/plugins/zoomtool/vzoomtool.cc
+++ b/karbon/plugins/zoomtool/vzoomtool.cc
@@ -155,13 +155,13 @@ VZoomTool::recalc()
}
void
-VZoomTool::setup( KActionCollection *collection )
+VZoomTool::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( "Zoom Tool" ), "14_zoom", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() );
+ m_action = new TDERadioAction( i18n( "Zoom Tool" ), "14_zoom", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() );
m_action->setToolTip( i18n( "Zoom" ) );
m_action->setExclusiveGroup( "misc" );
//m_ownAction = true;
diff --git a/karbon/plugins/zoomtool/vzoomtool.h b/karbon/plugins/zoomtool/vzoomtool.h
index c6f1ffcd..4111ba18 100644
--- a/karbon/plugins/zoomtool/vzoomtool.h
+++ b/karbon/plugins/zoomtool/vzoomtool.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( "Zoom Tool" ); }
virtual TQString contextHelp();
virtual TQString statusText();