Version: 1.1 (using KDE 3.5.1 Level "a" , SUSE 10.1) Compiler: Target: i586-suse-linux OS: Linux (i686) release 2.6.16-rc6-git1-4-smp Kontact is killing.. and I start Kontact again. -> crash sometimes I can reproduce it with start kontact and kill kontact manually and start kontact again -> crash. See attachment for debuginfo.
Created attachment 15195 [details] Debuginfo
SVN commit 520225 by winterz: A possible fix for a crash in the Kontact summary caused by newsticker. BUGS: 123895 M +4 -4 summarywidget.cpp --- branches/KDE/3.5/kdepim/kontact/plugins/newsticker/summarywidget.cpp #520224:520225 @@ -140,8 +140,8 @@ connectDCOPSignal( "rssservice", feedRef.obj(), "documentUpdated(DCOPRef)", "documentUpdated(DCOPRef)", false ); - qApp->processEvents( QEventLoop::ExcludeUserInput | - QEventLoop::ExcludeSocketNotifiers ); + qApp->eventLoop()->processEvents( QEventLoop::ExcludeUserInput | + QEventLoop::ExcludeSocketNotifiers ); } updateDocuments(); @@ -167,8 +167,8 @@ DCOPRef artRef = feedRef.call( "article(int)", i ); QString title, url; - qApp->processEvents( QEventLoop::ExcludeUserInput | - QEventLoop::ExcludeSocketNotifiers ); + qApp->eventLoop()->processEvents( QEventLoop::ExcludeUserInput | + QEventLoop::ExcludeSocketNotifiers ); artRef.call( "title()" ).get( title ); artRef.call( "link()" ).get( url );
I just committed a possible fix for this crash. It will be available in KDE 3.5.3, which is due a couple months from now. Or, if you happen to know how to compile KDE yourself, you could give it a try now.