diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-05-21 16:26:37 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-05-21 16:36:09 +0100 |
commit | 99938e7bc8a305dcc9733adbe635e25a38afed31 (patch) | |
tree | 25354420d171019465042ae542508485ce5c508e /sfx2 | |
parent | 15cc77f8d3d1edfd0e8114829bc4b340c3d73b4d (diff) |
tdf#91381 - fix a couple of animation related lifecycle issues.
Change-Id: I4aada7f27e3a88124ad670e62ddb6c92ecf431a8
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/dockwin.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sfx2/source/dialog/dockwin.cxx b/sfx2/source/dialog/dockwin.cxx index 35bc94582870..83c68dc1368c 100644 --- a/sfx2/source/dialog/dockwin.cxx +++ b/sfx2/source/dialog/dockwin.cxx @@ -1729,6 +1729,9 @@ Size SfxDockingWindow::GetMinOutputSizePixel() const bool SfxDockingWindow::Notify( NotifyEvent& rEvt ) { + if ( !pImp ) + return DockingWindow::Notify( rEvt ); + if ( rEvt.GetType() == MouseNotifyEvent::GETFOCUS ) { if (pMgr != NULL) |