author | conber <conber> | 2002-06-15 20:53:53 (UTC) |
---|---|---|
committer | conber <conber> | 2002-06-15 20:53:53 (UTC) |
commit | be10ba352f2a89bc5ec816eefc307a4ae2f7ff6b (patch) (unidiff) | |
tree | 414e77447b8f8d6baeef6588a009cb65e1353c0b | |
parent | e23774336087439cfed07899c8446eab674a3de8 (diff) | |
download | opie-be10ba352f2a89bc5ec816eefc307a4ae2f7ff6b.zip opie-be10ba352f2a89bc5ec816eefc307a4ae2f7ff6b.tar.gz opie-be10ba352f2a89bc5ec816eefc307a4ae2f7ff6b.tar.bz2 |
fixed abort bug
-rw-r--r-- | noncore/unsupported/mail2/composer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/unsupported/mail2/composer.cpp b/noncore/unsupported/mail2/composer.cpp index 03d50b6..57f0779 100644 --- a/noncore/unsupported/mail2/composer.cpp +++ b/noncore/unsupported/mail2/composer.cpp | |||
@@ -117,12 +117,13 @@ void Composer::slotSendMail() | |||
117 | } | 117 | } |
118 | 118 | ||
119 | smail.setAttachments(attachments); | 119 | smail.setAttachments(attachments); |
120 | 120 | ||
121 | QString header, message; | 121 | QString header, message; |
122 | MailFactory::genMail(header, message, smail, this); | 122 | MailFactory::genMail(header, message, smail, this); |
123 | if (header.isNull() || message.isNull()) return;// Aborted. | ||
123 | 124 | ||
124 | abort->setEnabled(true); | 125 | abort->setEnabled(true); |
125 | 126 | ||
126 | SmtpHandler *handler = new SmtpHandler(header, message, accountsLoaded[from->currentItem()], to->text()); | 127 | SmtpHandler *handler = new SmtpHandler(header, message, accountsLoaded[from->currentItem()], to->text()); |
127 | connect(handler, SIGNAL(finished()), SLOT(slotSendFinished())); | 128 | connect(handler, SIGNAL(finished()), SLOT(slotSendFinished())); |
128 | connect(handler, SIGNAL(error(const QString &)), SLOT(slotSendError(const QString &))); | 129 | connect(handler, SIGNAL(error(const QString &)), SLOT(slotSendError(const QString &))); |