summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-01 14:00:30 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-01 14:00:30 +0000
commitb881706ef8eb3c2db156f1aac4565da2e257a922 (patch)
tree7743cf4edd912ddb1af044b98b3c0ea27360d94c /svx
parent897727d4796604646d8fa2e2951803aa35c43880 (diff)
INTEGRATION: CWS os87 (1.19.52); FILE MERGED
2006/10/23 10:13:36 os 1.19.52.1: #139111# check if interfaces are valid
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/selector.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/svx/source/dialog/selector.cxx b/svx/source/dialog/selector.cxx
index 25d1c487145f..56d5064f97a9 100644
--- a/svx/source/dialog/selector.cxx
+++ b/svx/source/dialog/selector.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: selector.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 12:26:08 $
+ * last change: $Author: vg $ $Date: 2006-11-01 15:00:30 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1060,6 +1060,9 @@ void SvxConfigGroupListBox_Impl::RequestingChilds( SvLBoxEntry *pEntry )
node is a first level child of the Root and is NOT
either the current document, user or share */
Reference< browse::XBrowseNode >& theChild = children[n];
+ //#139111# some crash reports show that it might be unset
+ if(!theChild.is())
+ continue;
::rtl::OUString uiName = theChild->getName();
BOOL bDisplay = TRUE;