Kaydet (Commit) c59726e6 authored tarafından Michael Meeks's avatar Michael Meeks

tdf#92392 - tolerate Window::SetText post dispose.

Change-Id: I458f8e8665373d3e5ab9ed20e39783f4d34ca128
üst a8a9b4f8
......@@ -3185,7 +3185,7 @@ void Window::SetCursor( vcl::Cursor* pCursor )
void Window::SetText( const OUString& rStr )
{
if (rStr == mpWindowImpl->maText)
if (!mpWindowImpl || rStr == mpWindowImpl->maText)
return;
OUString oldTitle( mpWindowImpl->maText );
......
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