From e782feb7418fbf956547b9abb59afdde00745442 Mon Sep 17 00:00:00 2001 From: conber Date: Sat, 15 Jun 2002 20:16:02 +0000 Subject: added message box --- (limited to 'noncore/unsupported/mail2') diff --git a/noncore/unsupported/mail2/TODO b/noncore/unsupported/mail2/TODO index ef596dc..5873615 100644 --- a/noncore/unsupported/mail2/TODO +++ b/noncore/unsupported/mail2/TODO @@ -1,7 +1,8 @@ -LISAmail TODO +Mail TODO ----------------------------------------------------------------------------- General stuff: + - This program needs a name! - If password is empty, ask for it during fetch. - Check if all necessary fields in AccoundEditor are filled. @@ -27,5 +28,5 @@ Testing: much opportunity to test on other servers. Giving me test-accounts on other servers would be helpfull. -If you want something added, drop a mail. Comments are allways welcome. +If you want something added, drop a mail. Comments are always welcome. diff --git a/noncore/unsupported/mail2/composer.cpp b/noncore/unsupported/mail2/composer.cpp index 2f13604..03d50b6 100644 --- a/noncore/unsupported/mail2/composer.cpp +++ b/noncore/unsupported/mail2/composer.cpp @@ -137,6 +137,8 @@ void Composer::slotSendError(const QString &error) void Composer::slotSendFinished() { + QMessageBox::information(this, tr("Success"), tr("

The mail was sent successfully.

"), tr("Ok")); + status->setText(QString(0)); abort->setEnabled(false); } diff --git a/noncore/unsupported/mail2/libmail/mailfactory.cpp b/noncore/unsupported/mail2/libmail/mailfactory.cpp index 58cf5f8..427e72c 100644 --- a/noncore/unsupported/mail2/libmail/mailfactory.cpp +++ b/noncore/unsupported/mail2/libmail/mailfactory.cpp @@ -100,7 +100,7 @@ MailFactory::MailFactory(SendMail &smail, QWidget *parent) _body += "\n" + MiscFunctions::encodeBase64(file) + "\n"; } else { - int ret = QMessageBox::critical(_parent, tr("Error"), tr("

Couldn't attach file '%1'. Continue anyway or abort?

"), tr("Continue"), tr("Abort")); + int ret = QMessageBox::critical(_parent, tr("Error"), tr("

Couldn't attach file '%1'. Continue anyway or abort?

").arg((*it).fileName()), tr("Continue"), tr("Abort")); if (ret == 1) { it = attachments.end(); _abort = true; -- cgit v0.9.0.2