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.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp b/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp
index 67e5e6b..8726a5a 100644
--- a/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp
+++ b/kipi-plugins/jpeglossless/plugin_jpeglossless.cpp
@@ -82,7 +82,7 @@ void Plugin_JPEGLossless::setup( TQWidget* widget )
m_action_AutoExif = new TDEAction(i18n("Auto Rotate/Flip Using Exif Information"),
0, 0,
this,
- TQT_SLOT(slotRotate()),
+ TQ_SLOT(slotRotate()),
actionCollection(),
"rotate_exif");
@@ -95,14 +95,14 @@ void Plugin_JPEGLossless::setup( TQWidget* widget )
"object-rotate-left",
SHIFT+CTRL+Key_Left,
this,
- TQT_SLOT(slotRotate()),
+ TQ_SLOT(slotRotate()),
actionCollection(),
"object-rotate-left") );
m_action_RotateImage->insert( new TDEAction(i18n("Right"),
"object-rotate-right",
SHIFT+CTRL+Key_Right,
this,
- TQT_SLOT(slotRotate()),
+ TQ_SLOT(slotRotate()),
actionCollection(),
"object-rotate-right") );
@@ -115,7 +115,7 @@ void Plugin_JPEGLossless::setup( TQWidget* widget )
0,
CTRL+Key_Asterisk,
this,
- TQT_SLOT(slotFlip()),
+ TQ_SLOT(slotFlip()),
actionCollection(),
"flip_horizontal") );
@@ -123,7 +123,7 @@ void Plugin_JPEGLossless::setup( TQWidget* widget )
0,
CTRL+Key_Slash,
this,
- TQT_SLOT(slotFlip()),
+ TQ_SLOT(slotFlip()),
actionCollection(),
"flip_vertical") );
@@ -131,7 +131,7 @@ void Plugin_JPEGLossless::setup( TQWidget* widget )
"grayscaleconvert",
0,
this,
- TQT_SLOT(slotConvert2GrayScale()),
+ TQ_SLOT(slotConvert2GrayScale()),
actionCollection(),
"jpeglossless_convert2grayscale");
@@ -155,17 +155,17 @@ void Plugin_JPEGLossless::setup( TQWidget* widget )
m_thread = new KIPIJPEGLossLessPlugin::ActionThread(interface, this);
- connect( interface, TQT_SIGNAL( selectionChanged( bool ) ),
- m_action_AutoExif, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( selectionChanged( bool ) ),
+ m_action_AutoExif, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( selectionChanged( bool ) ),
- m_action_RotateImage, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( selectionChanged( bool ) ),
+ m_action_RotateImage, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( selectionChanged( bool ) ),
- m_action_FlipImage, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( selectionChanged( bool ) ),
+ m_action_FlipImage, TQ_SLOT( setEnabled( bool ) ) );
- connect( interface, TQT_SIGNAL( selectionChanged( bool ) ),
- m_action_Convert2GrayScale, TQT_SLOT( setEnabled( bool ) ) );
+ connect( interface, TQ_SIGNAL( selectionChanged( bool ) ),
+ m_action_Convert2GrayScale, TQ_SLOT( setEnabled( bool ) ) );
}
Plugin_JPEGLossless::~Plugin_JPEGLossless()
@@ -215,8 +215,8 @@ void Plugin_JPEGLossless::slotFlip()
m_progressDlg = new KIPI::BatchProgressDialog(kapp->activeWindow(),
i18n("Flip images %1").arg(title));
- connect(m_progressDlg, TQT_SIGNAL(cancelClicked()),
- this, TQT_SLOT(slotCancel()));
+ connect(m_progressDlg, TQ_SIGNAL(cancelClicked()),
+ this, TQ_SLOT(slotCancel()));
m_progressDlg->show();
@@ -271,8 +271,8 @@ void Plugin_JPEGLossless::slotRotate()
m_progressDlg = new KIPI::BatchProgressDialog(kapp->activeWindow(),
i18n("Rotate images %1").arg(title));
- connect(m_progressDlg, TQT_SIGNAL(cancelClicked()),
- this, TQT_SLOT(slotCancel()));
+ connect(m_progressDlg, TQ_SIGNAL(cancelClicked()),
+ this, TQ_SLOT(slotCancel()));
m_progressDlg->show();
@@ -304,8 +304,8 @@ void Plugin_JPEGLossless::slotConvert2GrayScale()
m_progressDlg = new KIPI::BatchProgressDialog(kapp->activeWindow(),
i18n("Convert images to black & white"));
- connect(m_progressDlg, TQT_SIGNAL(cancelClicked()),
- this, TQT_SLOT(slotCancel()));
+ connect(m_progressDlg, TQ_SIGNAL(cancelClicked()),
+ this, TQ_SLOT(slotCancel()));
m_progressDlg->show();
@@ -445,8 +445,8 @@ void Plugin_JPEGLossless::customEvent(TQCustomEvent *event)
m_progressDlg->setButtonCancelText( i18n("&Close") );
#endif
- disconnect(m_progressDlg, TQT_SIGNAL(cancelClicked()),
- this, TQT_SLOT(slotCancel()));
+ disconnect(m_progressDlg, TQ_SIGNAL(cancelClicked()),
+ this, TQ_SLOT(slotCancel()));
}
else
{