Kaydet (Commit) ab132fb0 authored tarafından Michael Meeks's avatar Michael Meeks Kaydeden (comit) Andras Timar

tdf#93487 - protect GetFocus method call post dispose.

Change-Id: Id61e37e4e9ea62c3dba224e55ddfdc71fb0bfc8c
Reviewed-on: https://gerrit.libreoffice.org/19542Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
Tested-by: 's avatarStephan Bergmann <sbergman@redhat.com>
(cherry picked from commit a3a61471)
üst 014749eb
...@@ -1638,7 +1638,8 @@ vcl::Window* SvxFrameWindow_Impl::GetPreferredKeyInputWindow() ...@@ -1638,7 +1638,8 @@ vcl::Window* SvxFrameWindow_Impl::GetPreferredKeyInputWindow()
void SvxFrameWindow_Impl::GetFocus() void SvxFrameWindow_Impl::GetFocus()
{ {
aFrameSet->GrabFocus(); if (aFrameSet)
aFrameSet->GrabFocus();
} }
void SvxFrameWindow_Impl::DataChanged( const DataChangedEvent& rDCEvt ) void SvxFrameWindow_Impl::DataChanged( const DataChangedEvent& rDCEvt )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment