svn+ssh://tmcguire@svn.kde.org/home/kde/branches/kdepim/enterprise4/kdepim
........
r830406 | staniek | 2008-07-10 13:07:35 +0200 (Thu, 10 Jul 2008) | 24 lines
Printing emails on Windows
The code (before patching) works on Linux (?) only by accident,
I guess (probably thanks to different strategy of handling QTimers with 0 delay [2]).
Explanation: KMReaderWin::printMsg() _can_ be executed before the timer
handling slotWriteNextHtmlChunk() finishes. And it is, on Windows.
- added KHtmlPartHtmlWriter::finished() signal, connected to KMReaderWin::slotPrintMsg().
- previous KMReaderWin::printMsg() code splitted into two pieces:
1st - KMReaderWin::printMsg( KMMessage* aMsg ) - connects the finished()
signal and calls setMsg(),
2nd - KMReaderWin::slotPrintMsg() - is a response for finished() signal,
calls mViewer->view()->print() and deletesLater() the KMReaderWin.
- at KMPrintCommand level, we keep QPointer<KMReaderWin> s_printerWin
globally until the KMReaderWin object is destroyed;
- on KMPrintCommand::execute() we call s_printerWin->htmlWriter()->reset()
to stop any previous processing
- added KMReaderWin::mPartHtmlWriter which is needed for connecting it's
signal to a slot
(reviewed)
........
r831603 | staniek | 2008-07-13 00:54:47 +0200 (Sun, 13 Jul 2008) | 23 lines
Printing emails:
Possible fix for Windows issue, reported at
http://intevation.de/roundup/kolab/issue2647
The code (before patching) works on Linux (?) only by accident, I guess
(probably thanks to different strategy of handling QTimers with 0 delay:
mHtmlTimer.start( 0 )).
Explanation: KMReaderWin::printMsg() _can_ be executed before
the timer handling slotWriteNextHtmlChunk() finishes. And it is, on Windows.
Details:
- added KHtmlPartHtmlWriter::finished() signal, connected to KMReaderWin::slotPrintMsg().
- previous KMReaderWin::printMsg() code splitted into two pieces:
1st - KMReaderWin::printMsg( KMMessage* aMsg ) - connects the finished()
signal and calls setMsg(),
2nd - KMReaderWin::slotPrintMsg() - is a response for finished() signal,
calls mViewer->view()->print() and deletesLater() the KMReaderWin.
- added KMReaderWin::mPartHtmlWriter which is needed for connecting its
signal to a slot
........
svn path=/trunk/KDE/kdepim/; revision=834651
Patch by Daniel Burrows <dburrows at debian dot org>, thanks and sorry for the delay.
BUG: 153669
CCMAIL: 446912@bugs.debian.org
svn path=/trunk/KDE/kdepim/; revision=830974
which would cause KMail to exit when the user OK'd a message box while KMail was
mimimized to the systray.
Implement cancelMailCheck() for POP accounts, so that those stop when quitting
KMail.
Also abort mail checks when using File->Quit in the menu and the systray is active.
BUG: 163479
svn path=/trunk/KDE/kdepim/; revision=830027
svn+ssh://svn.kde.org/home/kde/trunk/KDE/kdepim
........
r817668 | winterz | 2008-06-06 17:10:17 +0200 (Fri, 06 Jun 2008) | 3 lines
fix running kjots standalone killing kontact.
as usual, dfaure (aka "The Guru") solved this for us.
........
r817696 | winterz | 2008-06-06 18:42:15 +0200 (Fri, 06 Jun 2008) | 6 lines
port newInstance() to DBus interface.
rewrite a bit to make it more consistent the other plugins.
we still have a bug though: starting akregator standalone while kontact
is running brings the Summary view forward, not the Akregator plugin.
........
r817875 | scripty | 2008-06-06 23:51:55 +0200 (Fri, 06 Jun 2008) | 1 line
SVN_SILENT made messages (.desktop file)
........
r817923 | winterz | 2008-06-07 02:53:17 +0200 (Sat, 07 Jun 2008) | 13 lines
Add UniqueAppHandler support (but it doesn't work correctly yet).
Make "New Task" from the menu work.
i18n("New Task")
fix invisibleToolbarActions
other general cleanups
Thorsten: several problems remain, including:
no ktimetracker toolbar when embedded into kontact
no ktimetracker timer in the systray when embedded into kontact
we need a DBus interface to use in the newInstance()
........
r817931 | knight | 2008-06-07 05:05:10 +0200 (Sat, 07 Jun 2008) | 4 lines
Use current locale settings when formatting the publishing date of
an article for display in the article list, with fancy rendition
of dates less than one week old (eg. "Today <time>", "Yesterday <time>")
........
r818015 | ereslibre | 2008-06-07 14:37:09 +0200 (Sat, 07 Jun 2008) | 7 lines
Tool tips are shown now. Is a pity KFileItemDelegate tries to draw different tooltips. Will talk with Fredrik to see if we can get normal tooltips using KFileItemDelegate. Anyway, QStyledItemDelegate
doesn't get us in any regressions, and works as expected.
Tool tips are only shown if the mode of view is "Icons Only".
........
r818025 | winterz | 2008-06-07 15:47:03 +0200 (Sat, 07 Jun 2008) | 3 lines
disable the newsticker summary plugin.
........
r818045 | winterz | 2008-06-07 16:51:23 +0200 (Sat, 07 Jun 2008) | 4 lines
it might help the newstickerplugin if it had the correct version.
still, we keep this plugin disabled for KDE 4.1
........
r818049 | winterz | 2008-06-07 16:53:43 +0200 (Sat, 07 Jun 2008) | 5 lines
I don't see any reason to keep a KDE 3.2 version of the akregator plugin.
but maybe I'm wrong. Frank?
........
r818068 | winterz | 2008-06-07 17:48:21 +0200 (Sat, 07 Jun 2008) | 2 lines
change the weight so feeds shows up under to-do list, but above usenet.
........
r818080 | winterz | 2008-06-07 18:30:57 +0200 (Sat, 07 Jun 2008) | 7 lines
fix KJots "about" data when embedded into Kontact.
Steve: you really need to combine this and the kjots/main.cpp about data
data into 1 about and make this available to the standalone and part.
you might look at korganizer/aboutdata for example
........
r818102 | tmcguire | 2008-06-07 20:17:06 +0200 (Sat, 07 Jun 2008) | 4 lines
Store local subscription info immediately. Might help with bug 163268
........
r818122 | tmcguire | 2008-06-07 21:28:39 +0200 (Sat, 07 Jun 2008) | 7 lines
Don't crash in a debug function.
This might also fix bug 156319, although the backtrace misses the
last function it it.
........
r818123 | tmcguire | 2008-06-07 21:34:03 +0200 (Sat, 07 Jun 2008) | 3 lines
tabs--
SVN_SILENT
........
r818126 | tmcguire | 2008-06-07 22:01:16 +0200 (Sat, 07 Jun 2008) | 6 lines
When the config file says the folders patch is .kde/share/apps/kmail/mail, but that
doesn't exist, try .kde4/share/apps/kmail/mail instead, as some distros change KDEHOME
to .kde4.
I myself made that error when migrating my data, and some others as well.
........
r818181 | toma | 2008-06-08 03:24:44 +0200 (Sun, 08 Jun 2008) | 2 lines
Reinstate the integrity() function from mailody3, ported to akonadi. This should make the resource fetch the mail based on uidnext and uidvalidity checks. Basically means that it can now do the 'checkmail' properly and efficiently. Too bad Akonadi does not seem to call retrieveItems( const Akonadi::Collection & col ) on the intervals. I might be missing something.
........
r818274 | tstaerk | 2008-06-08 09:02:15 +0200 (Sun, 08 Jun 2008) | 5 lines
Renaming KArm to ktimetracker. Now that this is consistent, also the
"new task" functionality works.
BUGS:162725
CCBUGS:125862
........
r818294 | tstaerk | 2008-06-08 10:49:55 +0200 (Sun, 08 Jun 2008) | 1 line
Allow the user to name a task as he likes.
........
r818298 | tstaerk | 2008-06-08 11:05:48 +0200 (Sun, 08 Jun 2008) | 5 lines
Renaming KArm to ktimetracker. As this is now consistent, also the
toolbars work.
BUGS:162724 162726
CCBUGS:125862
........
r818299 | tstaerk | 2008-06-08 11:12:47 +0200 (Sun, 08 Jun 2008) | 1 line
Have the icons in the 'main bar'
........
r818339 | osterfeld | 2008-06-08 13:09:03 +0200 (Sun, 08 Jun 2008) | 1 line
return data for EditRole
........
r818341 | toma | 2008-06-08 13:13:30 +0200 (Sun, 08 Jun 2008) | 2 lines
When there is an error in selecting the mailbox, don't lock up.
........
r818344 | gberg | 2008-06-08 13:31:10 +0200 (Sun, 08 Jun 2008) | 1 line
Fix issue with text not wrapping on first page of anti-spam wizard.
........
r818346 | osterfeld | 2008-06-08 13:42:41 +0200 (Sun, 08 Jun 2008) | 2 lines
add sort role, to fix sorting of fancy dates
remove old ArticleListView impl
........
r818352 | toma | 2008-06-08 14:04:34 +0200 (Sun, 08 Jun 2008) | 2 lines
Add a noselect attribute. This way we can prevent accessing a folder which has this property on the server. This prevents useless server roundtrips.
........
r818355 | gberg | 2008-06-08 14:08:51 +0200 (Sun, 08 Jun 2008) | 1 line
Fix image in the anti-spam and anti-virus wizards so they don't move and the frame doesn't resize around them when resizing the dialog.
........
r818362 | tmcguire | 2008-06-08 14:24:51 +0200 (Sun, 08 Jun 2008) | 2 lines
Also disable the filter actions in the toolbar when no message is selected.
........
r818365 | osterfeld | 2008-06-08 14:28:16 +0200 (Sun, 08 Jun 2008) | 1 line
fix author column: store author name, email, url separatedly instead of storing it as HTML
........
r818383 | toma | 2008-06-08 15:12:31 +0200 (Sun, 08 Jun 2008) | 2 lines
In the past we did nothing if the message count in mailody matched the amount on the imap server. Now we need to emit a signal that we are done. Another lockup bytes the dust.
........
r818395 | tmcguire | 2008-06-08 15:48:06 +0200 (Sun, 08 Jun 2008) | 7 lines
Don't assert when the password entered is empty.
The password dialog is still shown too many times, but at least
it doesn't crash anymore.
........
r818405 | tmcguire | 2008-06-08 16:10:38 +0200 (Sun, 08 Jun 2008) | 4 lines
Make sure "Starting..." and "Opening Url.." disappear from the status bar again
after two seconds.
........
r818418 | winterz | 2008-06-08 16:26:16 +0200 (Sun, 08 Jun 2008) | 2 lines
not "context", but "comment" property
........
r818421 | msoeken | 2008-06-08 16:29:55 +0200 (Sun, 08 Jun 2008) | 2 lines
Use QStyledItemDelegate and QStyle::drawControl to correctly paint the background of the percentage column.
........
r818437 | tmcguire | 2008-06-08 17:01:20 +0200 (Sun, 08 Jun 2008) | 4 lines
- Make sure that the toolbar filter actions are also disabled right after starting up
- Remove some code that doesn't seem to do anything meaningful
- Put the last line of one function back as the last line
........
r818438 | krake | 2008-06-08 17:03:14 +0200 (Sun, 08 Jun 2008) | 3 lines
Put phone number widgets into a scrollarea and make sure the area can display the initial three without scrollbar.
Fixes an issue discovered during Krush day 2 (widgets being reduced in height when new phone numbers are added)
........
r818440 | tmcguire | 2008-06-08 17:10:58 +0200 (Sun, 08 Jun 2008) | 2 lines
Install the RC file, looks like this was removed by accident in r813516.
........
r818452 | mleupold | 2008-06-08 17:42:39 +0200 (Sun, 08 Jun 2008) | 2 lines
Made the dialog smaller to fit the KCMultiDialog's size on small resolutions.
........
r818456 | aacid | 2008-06-08 17:59:39 +0200 (Sun, 08 Jun 2008) | 2 lines
remove typo spotted by Soenke Dibbern
........
r818459 | tmcguire | 2008-06-08 18:10:26 +0200 (Sun, 08 Jun 2008) | 4 lines
Slightly better place to update the actions, now also works after running the
anti spam wizard.
Also, update all actions, not just those in the toolbar.
........
r818460 | krake | 2008-06-08 18:11:22 +0200 (Sun, 08 Jun 2008) | 2 lines
Fixing enable/disable state tracking depending on selection.
........
r818468 | osterfeld | 2008-06-08 18:30:21 +0200 (Sun, 08 Jun 2008) | 2 lines
convert to plaintext also when updating the title cache
........
r818469 | tmcguire | 2008-06-08 18:30:27 +0200 (Sun, 08 Jun 2008) | 4 lines
Don't crash when inline-forwarding multiple mails.
........
r818491 | mleupold | 2008-06-08 18:59:57 +0200 (Sun, 08 Jun 2008) | 2 lines
Made the Composer config dialog smaller to fit small resolutions.
........
r818511 | skelly | 2008-06-08 19:34:04 +0200 (Sun, 08 Jun 2008) | 3 lines
Move the about data in KJots to a standalone class instead of repeating the information.
........
r818517 | tstaerk | 2008-06-08 19:40:39 +0200 (Sun, 08 Jun 2008) | 4 lines
Understand the starttime in an iCalendar file.
BUGS:163526
........
r818532 | krake | 2008-06-08 20:33:46 +0200 (Sun, 08 Jun 2008) | 13 lines
QList::erase changes end() so caching it resulted in a crash.
Reported during Krush day as
"katastrophe 14:14, 8 June 2008 (CEST) crash if you make a new distribution list and change its name, then click ok"
Actually already crashes when creating a new distribution list and keeping the default name.
Most likely introduced during Qt4 porting, e.g. different behavior or Qt3's QValueList and Qt4's QList regarding erase() and/or end()
so it could be somewhere else as well.
........
r818574 | toma | 2008-06-08 22:36:51 +0200 (Sun, 08 Jun 2008) | 2 lines
dont deadlock on entering a folder with no new messages.
........
r818605 | ereslibre | 2008-06-09 01:02:05 +0200 (Mon, 09 Jun 2008) | 6 lines
The sidebar needed lots of intrinsec logic for working properly. This fixes the problem of a huge sidebar when the environment is clean (aka. "new user" test). This also fixes some problems with
layouts. Now the sidebar will automagically adopt the needed size, and the only thing one can do with the slider is to hide or show it. I have double reviewed it is correct with the kde pim coding
style, but if something is wrong, please tell me.
........
r818606 | winterz | 2008-06-09 01:10:28 +0200 (Mon, 09 Jun 2008) | 2 lines
minor style changes (line length <= 100)
........
r818612 | djarvie | 2008-06-09 02:20:36 +0200 (Mon, 09 Jun 2008) | 1 line
Prevent quitIf() calling quitIf()
........
svn path=/branches/kdepim/enterprise4/kdepim/; revision=818683
svn+ssh://svn.kde.org/home/kde/trunk/KDE/kdepim
........
r816688 | thrainer | 2008-06-04 17:38:42 +0200 (Wed, 04 Jun 2008) | 4 lines
Style.
SVN_SILENT:
........
r816720 | winterz | 2008-06-04 18:51:41 +0200 (Wed, 04 Jun 2008) | 6 lines
init() before the ActionManager is initialized.
must do this because the componentData needs to be set beforehand
so we don't get warning messages like:
"KActionCollection::setComponentData: this does not work on a KActionCollection
containing actions!"
........
r816746 | bbroeksema | 2008-06-04 20:24:01 +0200 (Wed, 04 Jun 2008) | 2 lines
HHCategory is actually saved to the mapping file now. Added test for it.
........
r816750 | tmcguire | 2008-06-04 20:35:05 +0200 (Wed, 04 Jun 2008) | 3 lines
KTextEdit -> KRichTextWidget
C++ needs a 'super' keyword like in Java...
........
r816762 | bbroeksema | 2008-06-04 21:10:22 +0200 (Wed, 04 Jun 2008) | 3 lines
PC categories are now also saved in the mapping files.
Added some tests for it.
........
r816803 | tstaerk | 2008-06-04 22:05:18 +0200 (Wed, 04 Jun 2008) | 1 line
Show the user what unit the duration is in.
........
r816878 | winterz | 2008-06-04 23:21:41 +0200 (Wed, 04 Jun 2008) | 6 lines
Raphael's new sidebar port to Qt4 itemviews.
This does include a couple of very short, new strings.
But I received no objections from the translators.
........
r816888 | ereslibre | 2008-06-04 23:44:17 +0200 (Wed, 04 Jun 2008) | 2 lines
Fix canDecodeMimeData on plugins. This way for example, we can't drop an URL dragged from Konqui to Contacts plugin.
........
r816891 | rjarosz | 2008-06-04 23:49:29 +0200 (Wed, 04 Jun 2008) | 3 lines
Dispatcher::registerComponent can't take SLOT(slotName) as slotName argument.
........
r816901 | tmcguire | 2008-06-05 00:13:08 +0200 (Thu, 05 Jun 2008) | 11 lines
- Return the correct return code when not all messages could be moved in KMMoveCommand
- In the action scheduler, don't delete the original mail if the filtered copy couldn't
be moved back
This is a hotfix for IMAP, which will eat messages if one of the filters has online IMAP
target folder (in which case the action scheduler will be used).
The real problem is of course that the move command fails in the frist place, will have to
figure that out later.
........
r817026 | scripty | 2008-06-05 04:27:16 +0200 (Thu, 05 Jun 2008) | 1 line
SVN_SILENT made messages (.desktop file)
........
svn path=/branches/kdepim/enterprise4/kdepim/; revision=817055
- In the action scheduler, don't delete the original mail if the filtered copy couldn't
be moved back
This is a hotfix for IMAP, which will eat messages if one of the filters has online IMAP
target folder (in which case the action scheduler will be used).
The real problem is of course that the move command fails in the frist place, will have to
figure that out later.
svn path=/trunk/KDE/kdepim/; revision=816901
-use K_GLOBAL_STATIC for static data
-an attempt to fix possible crashes and "null messages appearing in folders like outbox"
Details:
M kmail/kmfolderindex_sqlite.cpp
M kmail/kmfolderindex.h
* executes "DELETE FROM messages WHERE id=.." for every for messages
with 0 serial number, especially for the outbox
* removed commented-out old impl.
M kmail/kmmessage.h
use K_GLOBAL_STATIC
M kmail/kmfoldermaildir.cpp
* minor change
M kmail/jobscheduler.cpp
M kmail/jobscheduler.h
* ~JobScheduler() use qDeleteAll() (and clear for sanity)
M kmail/networkaccount.cpp
* use K_GLOBAL_STATIC
* use value() to avoid inserting 0 values
* NetworkAccount::resetConnectionList(): use remove() instead of inserting 0
M kmail/kmmessage.cpp
* use K_GLOBAL_STATIC
M kmail/kmcommands.cpp
* KMMoveCommand::execute(): skip mesages with serial number == 0
-this avoids crashes when user tries to clean up a folder with "no subject" items
M kmail/kmmsgbase.cpp
* #ifdef code related to using_mmap when using sqlite mode
M kmail/networkaccount.h
* use QPointer<KIO::Slave> mSlave and bits for boolean members
svn path=/trunk/KDE/kdepim/; revision=809620
https://vkrause@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
........
r783303 | vkrause | 2008-03-07 20:15:37 +0100 (Fri, 07 Mar 2008) | 5 lines
Some mimelib voodoo to make attachment modification/deletion work with
all kinds of multipart sturctures.
Kolab issue 1770
........
svn path=/trunk/KDE/kdepim/; revision=783312
Merged revisions 739063 via svnmerge from
svn+ssh://ervin@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
........
r739063 | tilladam | 2007-11-20 12:09:35 +0100 (mar, 20 nov 2007) | 9
lines
Enable the "Edit" action also on mails that are not in drafts folders
and
give it the same semantics as "send again", which was previously only
available on sent mail. Unlike edit, send-again does not remove the
original
mail, which is wanted for received mails. It also now sanitizes the
generated
mail with respect to headers, etc, but tries to retain as much state
as
possible from potential previous edits, like identity selection, etc.
Prokde35-z Item 25
........
svn path=/trunk/KDE/kdepim/; revision=771202
svn+ssh://ahartmetz@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
........
r728541 | tilladam | 2007-10-23 18:40:16 +0200 (Tue, 23 Oct 2007) | 6 lines
Add the ability to import and export filter rules to files. Imported rules
are appended. Import works both from previously exported files as well
as normal kmailrc config files.
Prokde35-z Item 16.
........
r732440 | tilladam | 2007-11-03 22:14:28 +0100 (Sat, 03 Nov 2007) | 4 lines
Make sure the file selector is shown on top of the filter dialog.
issue/kolab2142
........
r732794 | tilladam | 2007-11-04 20:56:03 +0100 (Sun, 04 Nov 2007) | 2 lines
Make it possible to select a subset of all filters to import or export.
........
r733495 | tilladam | 2007-11-06 14:45:45 +0100 (Tue, 06 Nov 2007) | 4 lines
Provide a proper parent for the "ask to overwrite" dialog.
kolab/issue2142
........
r733511 | tilladam | 2007-11-06 15:34:16 +0100 (Tue, 06 Nov 2007) | 4 lines
Move transaction code into the filtermanager, from the caller and make sure
filter counts are written to and read from the right section.
kolab/issue 2176
........
r733519 | tilladam | 2007-11-06 15:56:16 +0100 (Tue, 06 Nov 2007) | 4 lines
Show an error message if the to-be-imported filters file can't be read.
kolab/issue2175
........
r748479 | vkrause | 2007-12-14 16:57:26 +0100 (Fri, 14 Dec 2007) | 4 lines
Don't lose newly entered filter settings when clicking on ok or apply.
Kolab issue 2191
........
svn path=/trunk/KDE/kdepim/; revision=761360
- Remove the existing org.kde.kmail.kmail/kmailpart/mailcomposer.xml files, and let them
be generated at build time instead. This is done by extracting the slots and signals
marked with Q_SCRIPTABLE.
I had to adjust the CMake files of all users of the XML files to use the one from the
build directory now.
Currently, the XML files are also installed. I am not sure if this is a good idea, as that
implies we have to keep some sort of compatibility.
- Fix incorrect D-Bus path and method call in the summary view. Now the generated interface is
used instead. Checking the accounts with the sync actions works again now.
- Some DCOP->D-Bus renamings in comments
- Some style fixes around D-Bus related lines
The D-Bus test of KMail and the Kontact KMail summary still work.
This needs the new FindQt4.cmake from kdelibs.
This probably needs a clean build.
I did not touch the groupware interface or the SMIME security config page
(which talks to Kleopatra). This is left for KDAB to fix, but it would be
nice to contact me before.
svn path=/trunk/KDE/kdepim/; revision=750976
were false positives.
There is one warning left, about slotInfoMessage
in QuotaJobs::GetQuotarootjo. This seems to be
real, as neither that slot nor the signal
connected to that slot seem to exist with that
signature.
It would be nice if someone with IMAP knowledge could
fix that.
svn path=/trunk/KDE/kdepim/; revision=747352
give it the same semantics as "send again", which was previously only
available on sent mail. Unlike edit, send-again does not remove the original
mail, which is wanted for received mails. It also now sanitizes the generated
mail with respect to headers, etc, but tries to retain as much state as
possible from potential previous edits, like identity selection, etc.
Prokde35-z Item 25
svn path=/branches/kdepim/enterprise/kdepim/; revision=739063
fix templates for forwarding do not work with inline mails
Call setReplyFocus() when forwarding, so that %CURSOR in templates works.
CCBUG:140549
svn path=/trunk/KDE/kdepim/; revision=731095
are appended. Import works both from previously exported files as well
as normal kmailrc config files.
Prokde35-z Item 16.
svn path=/branches/kdepim/enterprise/kdepim/; revision=728541
custom icon.
Make the folder shortcut work by adding the action to the foldertree.
Without that, the action would not work at all, because it was not in
a menu or in a toolbar.
For some reason, folder shortcuts don't work if there are conflicting
shortcuts and KMail is restarted though.
deprecated--
svn path=/trunk/KDE/kdepim/; revision=727494
Reasons:
- Most parts are disabled/commented out anyway
- The kdelibs part does not work
- Kopete won't be ready for KDE 4.0
- The author of KIMProxy (Will) is not going to fix KIMProxy,
but there are plans to add something similar later, probably
based on Decibel.
svn path=/trunk/KDE/kdepim/; revision=706534
Instead of skipping some template tags like QUOTE or HEADERS, now the whole
template is skipped when doing a blank reply.
BUG: 142483
svn path=/trunk/KDE/kdepim/; revision=700384