-rw-r--r-- | noncore/net/mail/selectsmtp.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/net/mail/selectsmtp.cpp b/noncore/net/mail/selectsmtp.cpp index e82c6ca..79b10ef 100644 --- a/noncore/net/mail/selectsmtp.cpp +++ b/noncore/net/mail/selectsmtp.cpp | |||
@@ -45,9 +45,15 @@ void selectsmtp::setSelectionlist(QList<SMTPaccount>*list) | |||
45 | { | 45 | { |
46 | m_smtpList = list; | 46 | m_smtpList = list; |
47 | accountSelection->clear(); | 47 | accountSelection->clear(); |
48 | if (!m_smtpList || m_smtpList->count()==0) { | ||
49 | accountSelection->setEnabled(false); | ||
50 | return; | ||
51 | } | ||
52 | accountSelection->setEnabled(true); | ||
48 | for (unsigned i = 0; m_smtpList!=0 && i < m_smtpList->count(); ++i) { | 53 | for (unsigned i = 0; m_smtpList!=0 && i < m_smtpList->count(); ++i) { |
49 | accountSelection->insertItem( m_smtpList->at(i)->getAccountName()); | 54 | accountSelection->insertItem( m_smtpList->at(i)->getAccountName()); |
50 | } | 55 | } |
56 | m_current_smtp = m_smtpList->at(0); | ||
51 | } | 57 | } |
52 | 58 | ||
53 | SMTPaccount*selectsmtp::selected_smtp() | 59 | SMTPaccount*selectsmtp::selected_smtp() |