For a while now, patch attached but i'm unsure whether that's just something local? (Somebody would have noticed?)
Cheers, Thomas
From d85b06b93691d05b49ce8d8d55945058e7b35803 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= <thomas.luebk...@gmail.com> Date: Sun, 11 Aug 2013 13:18:36 +0200 Subject: [PATCH 1/5] FIXBUILD --- src/Gui/SettingsDialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/SettingsDialog.cpp b/src/Gui/SettingsDialog.cpp index 3e1362d..5671785 100644 --- a/src/Gui/SettingsDialog.cpp +++ b/src/Gui/SettingsDialog.cpp @@ -506,7 +506,7 @@ OutgoingPage::OutgoingPage(QWidget *parent, QSettings &s): QScrollArea(parent), smtpAuth->setChecked(s.value(SettingsNames::smtpAuthKey, false).toBool()); smtpUser->setText(s.value(SettingsNames::smtpUserKey).toString()); smtpPass->setText(s.value(SettingsNames::smtpPassKey).toString()); - passwordWarning->setStyleSheet(SettingsDialog::warningStyleSheet); +// passwordWarning->setStyleSheet(SettingsDialog::warningStyleSheet); sendmail->setText(s.value(SettingsNames::sendmailKey, SettingsNames::sendmailDefaultCmd).toString()); saveToImap->setChecked(s.value(SettingsNames::composerSaveToImapKey, true).toBool()); // Would be cool to support the special-use mailboxes @@ -643,7 +643,7 @@ void OutgoingPage::save(QSettings &s) void OutgoingPage::maybeShowPasswordWarning() { - passwordWarning->setVisible(!smtpPass->text().isEmpty()); +// passwordWarning->setVisible(!smtpPass->text().isEmpty()); } #ifdef XTUPLE_CONNECT -- 1.8.3.4