summaryrefslogtreecommitdiffstats
path: root/kjsembed/docs/examples/imunge/imunge_actions.js
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/docs/examples/imunge/imunge_actions.js')
-rwxr-xr-xkjsembed/docs/examples/imunge/imunge_actions.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/kjsembed/docs/examples/imunge/imunge_actions.js b/kjsembed/docs/examples/imunge/imunge_actions.js
index e07d01d4..abc967d0 100755
--- a/kjsembed/docs/examples/imunge/imunge_actions.js
+++ b/kjsembed/docs/examples/imunge/imunge_actions.js
@@ -38,7 +38,7 @@ mw.create_all_effects = function( mw, ac )
//
// Water color
//
- var action = new KAction( ac, 'watercolor_action' );
+ var action = new TDEAction( ac, 'watercolor_action' );
action.text = '&Water Color';
action.icon = 'imageeffect';
@@ -61,7 +61,7 @@ mw.create_all_effects = function( mw, ac )
//
// To Gray
//
- action = new KAction( ac, 'togray_action' );
+ action = new TDEAction( ac, 'togray_action' );
action.text = '&Grayscale';
action.icon = 'imageeffect';
@@ -77,7 +77,7 @@ mw.create_all_effects = function( mw, ac )
//
// Charcoal
//
- action = new KAction( ac, 'charcoal_action' );
+ action = new TDEAction( ac, 'charcoal_action' );
action.text = '&Charcoal';
action.icon = 'imageeffect';
@@ -93,7 +93,7 @@ mw.create_all_effects = function( mw, ac )
//
// Implode
//
- var action = new KAction( ac, 'implode_action' );
+ var action = new TDEAction( ac, 'implode_action' );
action.text = '&Implode';
action.icon = 'imageeffect';
@@ -109,7 +109,7 @@ mw.create_all_effects = function( mw, ac )
//
// Emboss
//
- action = new KAction( ac, 'emboss_action' );
+ action = new TDEAction( ac, 'emboss_action' );
action.text = '&Emboss';
action.icon = 'imageeffect';
@@ -125,7 +125,7 @@ mw.create_all_effects = function( mw, ac )
//
// Normalize
//
- action = new KAction( ac, 'normalize_action' );
+ action = new TDEAction( ac, 'normalize_action' );
action.text = '&Normalize';
action.icon = 'imageeffect';
@@ -141,7 +141,7 @@ mw.create_all_effects = function( mw, ac )
//
// Equalize
//
- action = new KAction( ac, 'equalize_action' );
+ action = new TDEAction( ac, 'equalize_action' );
action.text = 'Equa&lize';
action.icon = 'imageeffect';
@@ -157,7 +157,7 @@ mw.create_all_effects = function( mw, ac )
//
// Despeckle
//
- action = new KAction( ac, 'despeckle_action' );
+ action = new TDEAction( ac, 'despeckle_action' );
action.text = '&Despeckle';
action.icon = 'imageeffect';
@@ -178,7 +178,7 @@ mw.create_image_operations = function( mw, ac )
//
// Crop
//
- action = new KAction( ac, 'crop_action' );
+ action = new TDEAction( ac, 'crop_action' );
action.text = 'Crop...';
action.icon = 'crop';
@@ -243,7 +243,7 @@ mw.create_image_operations = function( mw, ac )
//
// Resize
//
- action = new KAction( ac, 'resize_action' );
+ action = new TDEAction( ac, 'resize_action' );
action.text = 'Resize...';
action.icon = 'transform';
@@ -263,7 +263,7 @@ mw.create_image_operations = function( mw, ac )
//
// Rotate right
//
- action = new KAction( ac, 'rotate_right_action' );
+ action = new TDEAction( ac, 'rotate_right_action' );
action.text = 'Rotate &Right';
action.icon = 'rotate_cw';
@@ -278,7 +278,7 @@ mw.create_image_operations = function( mw, ac )
//
// Rotate left
//
- action = new KAction( ac, 'rotate_left_action' );
+ action = new TDEAction( ac, 'rotate_left_action' );
action.text = 'Rotate &Left';
action.icon = 'rotate';
@@ -293,7 +293,7 @@ mw.create_image_operations = function( mw, ac )
//
// Mirror Vertical
//
- action = new KAction( ac, 'mirror_vertical_action' );
+ action = new TDEAction( ac, 'mirror_vertical_action' );
action.text = 'Mirror &Vertical';
mw.apply_mirror_vertical = function()
@@ -307,7 +307,7 @@ mw.create_image_operations = function( mw, ac )
//
// Mirror Horizontal
//
- action = new KAction( ac, 'mirror_horizontal_action' );
+ action = new TDEAction( ac, 'mirror_horizontal_action' );
action.text = 'Mirror &Horizontal';
mw.apply_mirror_horizontal = function()