SVN commit 659861 by winterz: fix "attendee in CC-field are missing from an invitation if the own email address could not be found". Patch from Martin. Thanks! BUGS: 131029 M +2 -2 callback.cpp --- branches/KDE/3.5/kdepim/kmail/callback.cpp #659860:659861 @@ -50,7 +50,7 @@ using namespace KMail; -Callback::Callback( KMMessage* msg, KMReaderWin* readerWin ) +Callback::Callback( KMMessage* msg, KMReaderWin* readerWin ) : mMsg( msg ), mReaderWin( readerWin ), mReceiverSet( false ) { } @@ -148,7 +148,7 @@ mReceiver = KInputDialog::getItem( i18n( "Select Address" ), selectMessage, - addrs, 0, FALSE, &ok, kmkernel->mainWin() ); + addrs+ccaddrs, 0, FALSE, &ok, kmkernel->mainWin() ); if( !ok ) mReceiver = QString::null; }