summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/batchprocessimages/plugin_batchprocessimages.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/batchprocessimages/plugin_batchprocessimages.cpp')
-rw-r--r--kipi-plugins/batchprocessimages/plugin_batchprocessimages.cpp48
1 files changed, 24 insertions, 24 deletions
diff --git a/kipi-plugins/batchprocessimages/plugin_batchprocessimages.cpp b/kipi-plugins/batchprocessimages/plugin_batchprocessimages.cpp
index 6e54460..98b218b 100644
--- a/kipi-plugins/batchprocessimages/plugin_batchprocessimages.cpp
+++ b/kipi-plugins/batchprocessimages/plugin_batchprocessimages.cpp
@@ -84,7 +84,7 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
"borderimages", // Menu icon.
0, // default shortcut.
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"batch_border_images");
@@ -92,7 +92,7 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
"colorimages", // Menu icon.
0, // default shortcut.
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"batch_color_images");
@@ -100,7 +100,7 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
"convertimages", // Menu icon.
0, // default shortcut.
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"batch_convert_images");
@@ -108,7 +108,7 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
"effectimages", // Menu icon.
0, // default shortcut.
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"batch_effect_images");
@@ -116,7 +116,7 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
"filterimages", // Menu icon.
0, // default shortcut.
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"batch_filter_images");
@@ -124,7 +124,7 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
"renameimages", // Menu icon.
0, // default shortcut.
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"batch_rename_images");
@@ -132,7 +132,7 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
"recompressimages", // Menu icon.
0, // default shortcut.
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"batch_recompress_images");
@@ -140,7 +140,7 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
"resizeimages", // Menu icon.
0, // default shortcut.
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"batch_resize_images");
@@ -173,29 +173,29 @@ void Plugin_BatchProcessImages::setup( TQWidget* widget )
m_action_recompressimages->setEnabled( enable );
m_action_resizeimages->setEnabled( enable );
- connect( interface, TQT_SIGNAL( currentAlbumChanged( bool ) ),
- m_action_borderimages, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( currentAlbumChanged( bool ) ),
+ m_action_borderimages, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( currentAlbumChanged( bool ) ),
- m_action_colorimages, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( currentAlbumChanged( bool ) ),
+ m_action_colorimages, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( currentAlbumChanged( bool ) ),
- m_action_convertimages, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( currentAlbumChanged( bool ) ),
+ m_action_convertimages, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( currentAlbumChanged( bool ) ),
- m_action_effectimages, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( currentAlbumChanged( bool ) ),
+ m_action_effectimages, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( currentAlbumChanged( bool ) ),
- m_action_filterimages, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( currentAlbumChanged( bool ) ),
+ m_action_filterimages, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( currentAlbumChanged( bool ) ),
- m_action_renameimages, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( currentAlbumChanged( bool ) ),
+ m_action_renameimages, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( currentAlbumChanged( bool ) ),
- m_action_recompressimages, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( currentAlbumChanged( bool ) ),
+ m_action_recompressimages, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( currentAlbumChanged( bool ) ),
- m_action_resizeimages, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( currentAlbumChanged( bool ) ),
+ m_action_resizeimages, TQ_SLOT( setEnabled( bool ) ) );
}
Plugin_BatchProcessImages::~Plugin_BatchProcessImages()