summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/wallpaper/plugin_wallpaper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/wallpaper/plugin_wallpaper.cpp')
-rw-r--r--kipi-plugins/wallpaper/plugin_wallpaper.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kipi-plugins/wallpaper/plugin_wallpaper.cpp b/kipi-plugins/wallpaper/plugin_wallpaper.cpp
index 64ab4d6..0acfdd8 100644
--- a/kipi-plugins/wallpaper/plugin_wallpaper.cpp
+++ b/kipi-plugins/wallpaper/plugin_wallpaper.cpp
@@ -66,53 +66,53 @@ void Plugin_WallPaper::setup( TQWidget* widget )
{
KIPI::Plugin::setup( widget );
- m_action_Background = new KActionMenu(i18n("&Set as Background"),
+ m_action_Background = new TDEActionMenu(i18n("&Set as Background"),
actionCollection(),
"images2desktop");
- m_action_Background->insert(new KAction (i18n("Centered"),
+ m_action_Background->insert(new TDEAction (i18n("Centered"),
0,
this,
TQT_SLOT(slotSetCenter()),
actionCollection(),
"images2desktop_center"));
- m_action_Background->insert(new KAction (i18n("Tiled"),
+ m_action_Background->insert(new TDEAction (i18n("Tiled"),
0,
this,
TQT_SLOT(slotSetTiled()),
actionCollection(),
"images2desktop_tiled"));
- m_action_Background->insert(new KAction (i18n("Centered Tiled"),
+ m_action_Background->insert(new TDEAction (i18n("Centered Tiled"),
0,
this,
TQT_SLOT(slotSetCenterTiled()),
actionCollection(),
"images2desktop_center_tiled"));
- m_action_Background->insert(new KAction (i18n("Centered Max-Aspect"),
+ m_action_Background->insert(new TDEAction (i18n("Centered Max-Aspect"),
0,
this,
TQT_SLOT(slotSetCenteredMaxpect()),
actionCollection(),
"images2desktop_center_maxpect"));
- m_action_Background->insert(new KAction (i18n("Tiled Max-Aspect"),
+ m_action_Background->insert(new TDEAction (i18n("Tiled Max-Aspect"),
0,
this,
TQT_SLOT(slotSetTiledMaxpect()),
actionCollection(),
"images2desktop_tiled_maxpect"));
- m_action_Background->insert(new KAction (i18n("Scaled"),
+ m_action_Background->insert(new TDEAction (i18n("Scaled"),
0,
this,
TQT_SLOT(slotSetScaled()),
actionCollection(),
"images2desktop_scaled"));
- m_action_Background->insert(new KAction (i18n("Centered Auto Fit"),
+ m_action_Background->insert(new TDEAction (i18n("Centered Auto Fit"),
0,
this,
TQT_SLOT(slotSetCenteredAutoFit()),
@@ -121,7 +121,7 @@ void Plugin_WallPaper::setup( TQWidget* widget )
//The Scale & crop code was available from Beta1 on
#if KDE_IS_VERSION(3,3,91)
- m_action_Background->insert(new KAction (i18n("Scale && Crop"),
+ m_action_Background->insert(new TDEAction (i18n("Scale && Crop"),
0,
this,
TQT_SLOT(slotSetScaleAndCrop()),
@@ -262,7 +262,7 @@ void Plugin_WallPaper::setWallpaper(int layout)
/////////////////////////////////////////////////////////////////////////////////////////////////////
-KIPI::Category Plugin_WallPaper::category( KAction* action ) const
+KIPI::Category Plugin_WallPaper::category( TDEAction* action ) const
{
if ( action == m_action_Background )
return KIPI::IMAGESPLUGIN;