[Bug 117991] crash on imap folder subscription
BJ Blanchard
blabj at dainty.ca
Thu Oct 4 21:16:26 BST 2007
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=117991
------- Additional Comments From blabj dainty ca 2007-10-04 22:16 -------
This simple patch fixes the subscription dialog to not stop after 1000 folders - only after 10,000 now. A little more scalable!
Its an indirect fix for those with > 1000 subscribable folders.
BJ.
--- src.orig/kdepim-enterprise/kmail/subscriptiondialog.cpp 2007-10-02 13:23:50.000000000 -0400
+++ src/kdepim-enterprise/kmail/subscriptiondialog.cpp 2007-10-04 14:37:46.000000000 -0400
@ -415,7 +415,7 @
for (uint i = mCount; i < mFolderNames.count(); ++i)
{
// give the dialog a chance to repaint
- if (done == 1000)
+ if (done == 10000)
{
emit listChanged();
QTimer::singleShot(0, this, SLOT(processItems()));
More information about the Kdepim-bugs
mailing list