| Summary: | kopete crash when i take files in dolphin, dolphin also crash!! | ||
|---|---|---|---|
| Product: | [Unmaintained] kopete | Reporter: | Raúl A V <kilem86> |
| Component: | general | Assignee: | Kopete Developers <kopete-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | CC: | kde, leggis, sebastian |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Raúl A V
2010-05-14 12:43:02 UTC
*** Bug 241549 has been marked as a duplicate of this bug. *** *** Bug 229992 has been marked as a duplicate of this bug. *** what about :
Index: kdenetwork/kopete/kopete/chatwindow/kopetechatwindow.cpp
===================================================================
--- kdenetwork/kopete/kopete/chatwindow/kopetechatwindow.cpp (révision 1104288)
+++ kdenetwork/kopete/kopete/chatwindow/kopetechatwindow.cpp (copie de travail)
@@ -632,7 +632,7 @@
void KopeteChatWindow::testCanDecode(const QDragMoveEvent *event, bool &accept)
{
- if (chatViewList[static_cast<KTabBar*>(m_tabBar->childAt( event->pos()))->selectTab( event->pos() )]->isDragEventAccepted( event )) {
+ if (m_tabBar && chatViewList[static_cast<KTabBar*>(m_tabBar->childAt( event->pos()))->selectTab( event->pos() )]->isDragEventAccepted( event )) {
accept = true;
} else {
accept = false;
SVN commit 1139164 by nlecureuil: Fix check in testCanDecode() BUG: 237608 M +1 -1 kopetechatwindow.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=1139164 |