| Summary: | [PATCH] attendee in CC-fieldds are missing from an invitation if the own email address could not be found | ||
|---|---|---|---|
| Product: | [Unmaintained] kmail | Reporter: | Martin Ostertag <martin.ostertag> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Solaris | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | This patch adds the receiver from the CC-field to the listview container | ||
|
Description
Martin Ostertag
2006-07-18 16:11:36 UTC
Created attachment 17027 [details]
This patch adds the receiver from the CC-field to the listview container
Since the KMail developers do not monitor the bug system very closely, you should talk to the developers on the kde-pim mailinglist or the #kontact IRC channel to get your patch reviewed and commited. Thanks. 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;
}
|