The following reply was made to PR ports/96367; it has been noted by GNATS.

From: Mike Durian <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc:  
Subject: Re: ports/96367: kontact crashes when I try to make a calendar appt.
Date: Tue, 2 May 2006 15:29:01 -0600

 Till Adam has created a patch, which I've posted to
 http://bugs.kde.org/show_bug.cgi?id=124024 and attached to this message.
 It appears to fix the problem for me, though I haven't done extensive
 testing.
 
 Given the impact of this bug (not being able to create events in the
 calendar), it might be a good idea to add this patch to the kdepim
 FreeBSD port until the next official KDE release appears.
 
 mike
 
 --- trunk/KDE/kdepim/kdgantt/KDGanttView.cpp #536242:536243
 @@ -638,7 +638,12 @@
    bool block = myTimeTable->blockUpdating();
    myTimeTable->setBlockUpdating( false );
    myTimeTable->updateMyContent();
 -  qApp->processEvents();
 +  /* The below causes recursive calls to various size updating methods, 
 which
 +   * cause QCanvas to hide and show items like mad, which is very slow. 
 If
 +   * there is a legitimate gui updating issue here somewhere, it will 
 need
 +   * to be solved differently.
 +   */
 +  //qApp->processEvents();
    int hintHeight = myTimeHeader->height();
    int legendHeight = 0;
    if ( showLegendButton() )
 
_______________________________________________
kde-freebsd mailing list
[email protected]
http://freebsd.kde.org/mailman/listinfo/kde-freebsd

Reply via email to