summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sendimages/sendimages.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sendimages/sendimages.cpp')
-rw-r--r--kipi-plugins/sendimages/sendimages.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kipi-plugins/sendimages/sendimages.cpp b/kipi-plugins/sendimages/sendimages.cpp
index 97ee0d3..1ed707e 100644
--- a/kipi-plugins/sendimages/sendimages.cpp
+++ b/kipi-plugins/sendimages/sendimages.cpp
@@ -91,8 +91,8 @@ SendImages::SendImages(KIPI::Interface* interface, const TQString &tmpFolder,
m_mozillaTimer = new TQTimer(this);
KImageIO::registerFormats();
- connect(m_mozillaTimer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotMozillaTimeout()));
+ connect(m_mozillaTimer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotMozillaTimeout()));
}
///Destructor
@@ -109,8 +109,8 @@ void SendImages::showDialog()
m_interface, m_collection);
m_sendImagesDialog->show();
- connect(m_sendImagesDialog, TQT_SIGNAL(signalAccepted()),
- m_parent, TQT_SLOT(slotAcceptedConfigDlg()));
+ connect(m_sendImagesDialog, TQ_SIGNAL(signalAccepted()),
+ m_parent, TQ_SLOT(slotAcceptedConfigDlg()));
}
/** Execute the no threadable operations before the real thread.
@@ -615,11 +615,11 @@ bool SendImages::invokeMailAgent(void)
if (!m_invokedBefore)
{
- connect(m_mailAgentProc, TQT_SIGNAL(processExited(TDEProcess *)),
- this, TQT_SLOT(slotMozillaExited(TDEProcess*)));
+ connect(m_mailAgentProc, TQ_SIGNAL(processExited(TDEProcess *)),
+ this, TQ_SLOT(slotMozillaExited(TDEProcess*)));
- connect(m_mailAgentProc, TQT_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
- this, TQT_SLOT(slotMozillaReadStderr(TDEProcess*, char*, int)));
+ connect(m_mailAgentProc, TQ_SIGNAL(receivedStderr(TDEProcess *, char*, int)),
+ this, TQ_SLOT(slotMozillaReadStderr(TDEProcess*, char*, int)));
}
tqDebug ("%s", Temp.ascii());
@@ -861,8 +861,8 @@ void SendImages::slotMozillaExited(TDEProcess*)
tqDebug("slotMozillaExited");
///Here would be the right point to clear the sendlist in order to avoid infinite resendings!!
m_filesSendList.clear();
- ///Also disconnect SLOT
- m_mailAgentProc->disconnect(TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(slotMozillaExited(TDEProcess*)));
+ ///Also disconnect slot
+ m_mailAgentProc->disconnect(TQ_SIGNAL(processExited(TDEProcess *)), this, TQ_SLOT(slotMozillaExited(TDEProcess*)));
tqDebug("Number of elements in m_filesSendList=%d, and in m_filesSendList_copy=%d)",(int)m_filesSendList.size(),(int)m_filesSendList_copy.size());
if ( m_mozillaStdErr.find("No running window found") != -1 ) // No remote Mozilla | Netscape |
@@ -900,7 +900,7 @@ void SendImages::slotMozillaExited(TDEProcess*)
///If Mozilla wasn't started before, now it is and so we can begin with the transmission
void SendImages::slotMozillaTimeout(void)
{
- m_mozillaTimer->disconnect(TQT_SIGNAL(timeout()), this, TQT_SLOT(slotMozillaTimeout()));
+ m_mozillaTimer->disconnect(TQ_SIGNAL(timeout()), this, TQ_SLOT(slotMozillaTimeout()));
tqDebug("slotMozillaTimeout: Number of elements in m_filesSendList=%d, and in m_filesSendList_copy=%d)",(int)m_filesSendList.size(),(int)m_filesSendList_copy.size());
kurllistdeepcopy(m_filesSendList,m_filesSendList_copy);