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

--- Comment #33 from Michael Meeks <michael.me...@collabora.com> ---
Hi Julian,

Good catch this patch:

commit 1c4025babd7037a3292aa530c7d45ab8d6ef6dcb
    vclwidget: change all vcl::window fields to be wrapped in VclPtr

...
@@ -743,8 +742,7 @@ void SAL_CALL SlideshowImpl::disposing()

     if( mpShowWindow )
     {
-        delete mpShowWindow;
-        mpShowWindow = 0;
+        mpShowWindow.clear();
     }

Looks like it doesn't match what we should be doing there. I suspect the
lifecycle of that is rather coomplicated - but can you try replacing this with
'disposeAndClear()' to see if that helps in the SlideshowImpl::disposing method
?

Thanks !

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

Reply via email to