summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/jpeglossless
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/jpeglossless')
-rw-r--r--kipi-plugins/jpeglossless/convert2grayscale.cpp4
-rw-r--r--kipi-plugins/jpeglossless/imageflip.cpp4
-rw-r--r--kipi-plugins/jpeglossless/imagerotate.cpp4
-rw-r--r--kipi-plugins/jpeglossless/plugin_jpeglossless.cpp44
-rw-r--r--kipi-plugins/jpeglossless/utils.cpp4
5 files changed, 30 insertions, 30 deletions
diff --git a/kipi-plugins/jpeglossless/convert2grayscale.cpp b/kipi-plugins/jpeglossless/convert2grayscale.cpp
index 6370c13..7869103 100644
--- a/kipi-plugins/jpeglossless/convert2grayscale.cpp
+++ b/kipi-plugins/jpeglossless/convert2grayscale.cpp
@@ -235,8 +235,8 @@ bool ImageGrayScale::image2GrayScaleImageMagick(const TQString& src, const TQStr
for (TQValueList<TQCString>::iterator it = args.begin(); it != args.end(); ++it)
tqDebug("%s", (const char*)(*it));
- connect(&process, TQT_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
- this, TQT_SLOT(slotReadStderr(TDEProcess*, char*, int)));
+ connect(&process, TQ_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
+ this, TQ_SLOT(slotReadStderr(TDEProcess*, char*, int)));
if (!process.start(TDEProcess::Block, TDEProcess::Stderr))
return false;
diff --git a/kipi-plugins/jpeglossless/imageflip.cpp b/kipi-plugins/jpeglossless/imageflip.cpp
index 53d9935..0e6e2b9 100644
--- a/kipi-plugins/jpeglossless/imageflip.cpp
+++ b/kipi-plugins/jpeglossless/imageflip.cpp
@@ -189,8 +189,8 @@ bool ImageFlip::flipImageMagick(const TQString& src, const TQString& dest, FlipA
for (TQValueList<TQCString>::iterator it = args.begin(); it != args.end(); ++it)
tqDebug("%s", (const char*)(*it));
- connect(&process, TQT_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
- this, TQT_SLOT(slotReadStderr(TDEProcess*, char*, int)));
+ connect(&process, TQ_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
+ this, TQ_SLOT(slotReadStderr(TDEProcess*, char*, int)));
if (!process.start(TDEProcess::Block, TDEProcess::Stderr))
return false;
diff --git a/kipi-plugins/jpeglossless/imagerotate.cpp b/kipi-plugins/jpeglossless/imagerotate.cpp
index 8a35988..9e76a83 100644
--- a/kipi-plugins/jpeglossless/imagerotate.cpp
+++ b/kipi-plugins/jpeglossless/imagerotate.cpp
@@ -213,8 +213,8 @@ bool ImageRotate::rotateImageMagick(const TQString& src, const TQString& dest,
for (TQValueList<TQCString>::iterator it = args.begin(); it != args.end(); ++it)
tqDebug("%s", (const char*)(*it));
- connect(&process, TQT_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
- this, TQT_SLOT(slotReadStderr(TDEProcess*, char*, int)));
+ connect(&process, TQ_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
+ this, TQ_SLOT(slotReadStderr(TDEProcess*, char*, int)));
if (!process.start(TDEProcess::Block, TDEProcess::Stderr))
return false;
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
{
diff --git a/kipi-plugins/jpeglossless/utils.cpp b/kipi-plugins/jpeglossless/utils.cpp
index 4e7811a..3556b92 100644
--- a/kipi-plugins/jpeglossless/utils.cpp
+++ b/kipi-plugins/jpeglossless/utils.cpp
@@ -151,8 +151,8 @@ bool Utils::updateMetadataImageMagick(const TQString& src, TQString& err)
for (TQValueList<TQCString>::iterator it = args.begin(); it != args.end(); ++it)
tqDebug("%s", (const char*)(*it));
- connect(&process, TQT_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
- this, TQT_SLOT(slotReadStderr(TDEProcess*, char*, int)));
+ connect(&process, TQ_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
+ this, TQ_SLOT(slotReadStderr(TDEProcess*, char*, int)));
if (!process.start(TDEProcess::Block, TDEProcess::Stderr))
return false;