author | zautrix <zautrix> | 2004-10-07 22:51:36 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-07 22:51:36 (UTC) |
commit | 9f1b282aa2a72f3118a89dfebbc3c8132197213a (patch) (unidiff) | |
tree | edb795e1dfbc0a192a692a43a4369c84526201dd | |
parent | 21ec296f7f2832920dac336bb9f9476c80d746f5 (diff) | |
download | kdepimpi-9f1b282aa2a72f3118a89dfebbc3c8132197213a.zip kdepimpi-9f1b282aa2a72f3118a89dfebbc3c8132197213a.tar.gz kdepimpi-9f1b282aa2a72f3118a89dfebbc3c8132197213a.tar.bz2 |
ompi fixes
-rw-r--r-- | kmicromail/composemail.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kmicromail/composemail.cpp b/kmicromail/composemail.cpp index e6f7daa..946e97d 100644 --- a/kmicromail/composemail.cpp +++ b/kmicromail/composemail.cpp | |||
@@ -111,24 +111,29 @@ ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool m | |||
111 | mMail = 0; | 111 | mMail = 0; |
112 | warnAttach = true; | 112 | warnAttach = true; |
113 | if ( smtpAccounts.count() > 0 ) { | 113 | if ( smtpAccounts.count() > 0 ) { |
114 | fillValues( smtpAccountBox->currentItem() ); | 114 | fillValues( smtpAccountBox->currentItem() ); |
115 | } else { | 115 | } else { |
116 | QMessageBox::information( 0, tr( "Problem" ), | 116 | QMessageBox::information( 0, tr( "Problem" ), |
117 | tr( "Please create an SMTP account first.\nThe SMTP is needed for sending mail.\n" ), | 117 | tr( "Please create an SMTP account first.\nThe SMTP is needed for sending mail.\n" ), |
118 | tr( "Ok" ) ); | 118 | tr( "Ok" ) ); |
119 | return; | 119 | return; |
120 | } | 120 | } |
121 | connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) ); | 121 | connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) ); |
122 | message->setFont ( KOPrefs::instance()->mComposeFont ); | 122 | message->setFont ( KOPrefs::instance()->mComposeFont ); |
123 | message->setWordWrap (QMultiLineEdit::WidgetWidth); | ||
124 | #ifndef DESKTOP_VERSION | ||
125 | QPEApplication::setStylusOperation( message, QPEApplication::RightOnHold ); | ||
126 | #endif | ||
127 | |||
123 | } | 128 | } |
124 | 129 | ||
125 | void ComposeMail::fillSettings() | 130 | void ComposeMail::fillSettings() |
126 | { | 131 | { |
127 | if ( QApplication::desktop()->width() < 320 ) | 132 | if ( QApplication::desktop()->width() < 320 ) |
128 | fromBox->setMaximumWidth( 100 ); | 133 | fromBox->setMaximumWidth( 100 ); |
129 | QStringList mailList = QStringList::split(";",KOPrefs::instance()->mEmail); | 134 | QStringList mailList = QStringList::split(";",KOPrefs::instance()->mEmail); |
130 | QStringList::ConstIterator sit = mailList.begin(); | 135 | QStringList::ConstIterator sit = mailList.begin(); |
131 | int pref = 0; | 136 | int pref = 0; |
132 | for (;sit!=mailList.end();++sit) { | 137 | for (;sit!=mailList.end();++sit) { |
133 | fromBox->insertItem((*sit)); | 138 | fromBox->insertItem((*sit)); |
134 | } | 139 | } |