https://bugs.documentfoundation.org/show_bug.cgi?id=113548

Maxim Monastirsky <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
           See Also|https://bugs.documentfounda |
                   |tion.org/show_bug.cgi?id=10 |
                   |5121                        |

--- Comment #3 from Maxim Monastirsky <[email protected]> ---
(In reply to Aron Budea from comment #2)
> The trace is somewhat similar to bug 105121's.
Not directly related to bug 105121, but this is a common pattern since the
VclPtr conversion to have the GetFocus method of a window called during its
dispose, and the GetFocus method tries to set the focus to one of its child
controls, which will crash if this particular control was already destructed to
this point. There are dozens of similar bugs in Bugzilla. The usual fix we
apply in those cases is to add a check inside GetFocus, whether the child is
still valid, so you might want to try this (can't do any development myself
right now):

 void SwSrcEditWindow::GetFocus()
 {
+    if (m_pOutWin)
         m_pOutWin->GrabFocus();
 }

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to