diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-05-01 14:34:23 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-05-02 00:49:58 +0200 |
commit | 9d17e1250acb7c5c60cdf8d71476c5873b8b4a9b (patch) | |
tree | 12275c42a88e9299398fe9b465660212ac91cdbe /svtools | |
parent | c6f0b726e605df49074e2ddc668fa4c6f070c170 (diff) |
Audit LoseFocus - basctl, cui, dbaccess.
Change-Id: If61b45f28f30e3ab00dbf071198233d59899d719
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index 9203d5656757..039b6693a11c 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -2832,7 +2832,7 @@ SvTreeListEntry* SvTreeListBox::GetEntry( const Point& rPos, bool bHit ) const SvTreeListEntry* SvTreeListBox::GetCurEntry() const { - return pImp->GetCurEntry(); + return pImp ? pImp->GetCurEntry() : NULL; } void SvTreeListBox::ImplInitStyle() |