summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sendimages/plugin_sendimages.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-10 10:11:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-10 10:30:23 +0900
commit9d73fae3fa66ac8c2563ae42fd403fb0ba449eae (patch)
tree6a7550af1cdb83694da1b8cb5754962f23e5da47 /kipi-plugins/sendimages/plugin_sendimages.cpp
parent11af3bb3653ec9d7d1c6d42906d33c8bcba22a24 (diff)
downloadkipi-plugins-9d73fae3fa66ac8c2563ae42fd403fb0ba449eae.tar.gz
kipi-plugins-9d73fae3fa66ac8c2563ae42fd403fb0ba449eae.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kipi-plugins/sendimages/plugin_sendimages.cpp')
-rw-r--r--kipi-plugins/sendimages/plugin_sendimages.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kipi-plugins/sendimages/plugin_sendimages.cpp b/kipi-plugins/sendimages/plugin_sendimages.cpp
index bc63399..952163d 100644
--- a/kipi-plugins/sendimages/plugin_sendimages.cpp
+++ b/kipi-plugins/sendimages/plugin_sendimages.cpp
@@ -77,7 +77,7 @@ void Plugin_SendImages::setup( TQWidget* widget )
"mail-message-new", // Menu icon.
0,
this,
- TQT_SLOT(slotActivate()),
+ TQ_SLOT(slotActivate()),
actionCollection(),
"send_images");
@@ -94,8 +94,8 @@ void Plugin_SendImages::setup( TQWidget* widget )
m_action_sendimages->setEnabled( selection.isValid() &&
!selection.images().isEmpty() );
- connect( interface, TQT_SIGNAL(selectionChanged(bool)),
- m_action_sendimages, TQT_SLOT(setEnabled(bool)));
+ connect( interface, TQ_SIGNAL(selectionChanged(bool)),
+ m_action_sendimages, TQ_SLOT(setEnabled(bool)));
}
Plugin_SendImages::~Plugin_SendImages()
@@ -147,8 +147,8 @@ void Plugin_SendImages::customEvent(TQCustomEvent *event)
{
m_progressDlg = new KIPI::BatchProgressDialog(kapp->activeWindow(), i18n("Preparing images to send"));
- connect(m_progressDlg, TQT_SIGNAL(cancelClicked()),
- this, TQT_SLOT(slotCancel()));
+ connect(m_progressDlg, TQ_SIGNAL(cancelClicked()),
+ this, TQ_SLOT(slotCancel()));
m_current = 0;
m_progressDlg->show();
@@ -261,8 +261,8 @@ void Plugin_SendImages::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()));
// Create a text file with images comments if necessary.