[Libreoffice-commits] core.git: vcl/source
Michael Meeks
michael.meeks at collabora.com
Wed May 6 06:34:39 PDT 2015
vcl/source/window/floatwin.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 0005d50f07f35fa1cb2063cf2cbad465c4068225
Author: Michael Meeks <michael.meeks at collabora.com>
Date: Wed May 6 14:37:29 2015 +0100
tdf#91073 - don't queue an async user event when disposed.
Change-Id: Ic0a084fe7392ae5a407a367fb67a5a1837a2ca14
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index 39030b7..0d6ef0d 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -582,8 +582,8 @@ void FloatingWindow::ImplCallPopupModeEnd()
// PopupMode is finished
mbInPopupMode = false;
- // call Handler asynchron.
- if ( !mnPostId )
+ // call Handler asynchronously.
+ if ( mpImplData && !mnPostId )
mnPostId = Application::PostUserEvent( LINK( this, FloatingWindow, ImplEndPopupModeHdl ) );
}
More information about the Libreoffice-commits
mailing list