Summary: | kontact crashs after restart of kontact | ||
---|---|---|---|
Product: | [Applications] kontact | Reporter: | sts |
Component: | summary | Assignee: | Allen Winter <winter> |
Status: | RESOLVED FIXED | ||
Severity: | crash | ||
Priority: | NOR | ||
Version: | 1.1 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | Debuginfo |
Description
sts
2006-03-19 12:43:45 UTC
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. |