diff options
Diffstat (limited to 'kipi-plugins/sendimages/plugin_sendimages.cpp')
-rw-r--r-- | kipi-plugins/sendimages/plugin_sendimages.cpp | 14 |
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. |