diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-05-01 16:33:01 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-05-02 00:50:06 +0200 |
commit | 393c51cee8bc3de5a2a9f4e04161c59e8712f631 (patch) | |
tree | 8dcee58f3fc4b6ecffbe55c3a5fe749f3f342b46 /reportdesign/source | |
parent | 526d192333615e8b3b10f144faad987519be1044 (diff) |
Audit LoseFocus - forms, reportdesign, sc, starmath, svtools.
Change-Id: If7068e59c88e8c3c3bafc70f64899a26d739e331
Diffstat (limited to 'reportdesign/source')
-rw-r--r-- | reportdesign/source/ui/report/propbrw.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/reportdesign/source/ui/report/propbrw.cxx b/reportdesign/source/ui/report/propbrw.cxx index 0fb2b0e62dfe..941979199fdc 100644 --- a/reportdesign/source/ui/report/propbrw.cxx +++ b/reportdesign/source/ui/report/propbrw.cxx @@ -579,7 +579,8 @@ IMPL_LINK( PropBrw, OnAsyncGetFocus, void*, ) void PropBrw::LoseFocus() { DockingWindow::LoseFocus(); - m_pDesignView->getController().InvalidateAll(); + if (m_pDesignView) + m_pDesignView->getController().InvalidateAll(); } } |