summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/composemail.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/mail/composemail.cpp b/noncore/net/mail/composemail.cpp
index f532815..73d1a43 100644
--- a/noncore/net/mail/composemail.cpp
+++ b/noncore/net/mail/composemail.cpp
@@ -179,33 +179,33 @@ void ComposeMail::accept()
179 return; 179 return;
180 } 180 }
181 181
182 mail->setCC( ccLine->text() ); 182 mail->setCC( ccLine->text() );
183 mail->setBCC( bccLine->text() ); 183 mail->setBCC( bccLine->text() );
184 mail->setReply( replyLine->text() ); 184 mail->setReply( replyLine->text() );
185 mail->setSubject( subjectLine->text() ); 185 mail->setSubject( subjectLine->text() );
186 QString txt = message->text(); 186 QString txt = message->text();
187 if ( !sigMultiLine->text().isEmpty() ) { 187 if ( !sigMultiLine->text().isEmpty() ) {
188 txt.append( "\n--\n" ); 188 txt.append( "\n--\n" );
189 txt.append( sigMultiLine->text() ); 189 txt.append( sigMultiLine->text() );
190 } 190 }
191 mail->setMessage( txt ); 191 mail->setMessage( txt );
192 AttachViewItem *it = (AttachViewItem *) attList->firstChild(); 192 AttachViewItem *it = (AttachViewItem *) attList->firstChild();
193 while ( it != NULL ) { 193 while ( it != NULL ) {
194 mail->addAttachment( it->getAttachment() ); 194 mail->addAttachment( it->getAttachment() );
195 it = (AttachViewItem *) it->itemBelow(); 195 it = (AttachViewItem *) it->nextSibling();
196 } 196 }
197 197
198 SMTPwrapper wrapper( settings ); 198 SMTPwrapper wrapper( settings );
199 wrapper.sendMail( *mail,checkBoxLater->isChecked() ); 199 wrapper.sendMail( *mail,checkBoxLater->isChecked() );
200 200
201 QDialog::accept(); 201 QDialog::accept();
202} 202}
203 203
204AttachViewItem::AttachViewItem( QListView *parent, Attachment *att ) 204AttachViewItem::AttachViewItem( QListView *parent, Attachment *att )
205 : QListViewItem( parent ) 205 : QListViewItem( parent )
206{ 206{
207 attachment = att; 207 attachment = att;
208 qDebug( att->getMimeType() ); 208 qDebug( att->getMimeType() );
209 setPixmap( 0, attachment->getDocLnk().pixmap().isNull() ? 209 setPixmap( 0, attachment->getDocLnk().pixmap().isNull() ?
210 Resource::loadPixmap( "UnknownDocument-14" ) : 210 Resource::loadPixmap( "UnknownDocument-14" ) :
211 attachment->getDocLnk().pixmap() ); 211 attachment->getDocLnk().pixmap() );