summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/jpeglossless/plugin_jpeglossless.cpp')
-rw-r--r--kipi-plugins/jpeglossless/plugin_jpeglossless.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp b/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp
index e69358e..99feebc 100644
--- a/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp
+++ b/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp
@@ -87,24 +87,24 @@ void Plugin_JPEGLossless::setup( TQWidget* widget )
"rotate_exif");
m_action_RotateImage = new TDEActionMenu(i18n("Rotate"),
- "rotate_cw",
+ "object-rotate-right",
actionCollection(),
"jpeglossless_rotate");
m_action_RotateImage->insert( new TDEAction(i18n("Left"),
- "rotate_ccw",
+ "object-rotate-left",
SHIFT+CTRL+Key_Left,
this,
TQT_SLOT(slotRotate()),
actionCollection(),
- "rotate_ccw") );
+ "object-rotate-left") );
m_action_RotateImage->insert( new TDEAction(i18n("Right"),
- "rotate_cw",
+ "object-rotate-right",
SHIFT+CTRL+Key_Right,
this,
TQT_SLOT(slotRotate()),
actionCollection(),
- "rotate_cw") );
+ "object-rotate-right") );
m_action_FlipImage = new TDEActionMenu(i18n("Flip"),
"flip",
@@ -233,13 +233,13 @@ void Plugin_JPEGLossless::slotRotate()
TQString title;
bool proceed = false;
- if (from == "rotate_cw")
+ if (from == "object-rotate-right")
{
m_thread->rotate(items, KIPIJPEGLossLessPlugin::Rot90);
title = i18n("right (clockwise)");
proceed = true;
}
- else if (from == "rotate_ccw")
+ else if (from == "object-rotate-left")
{
m_thread->rotate(items, KIPIJPEGLossLessPlugin::Rot270);
title = i18n("left (counterclockwise)");