summaryrefslogtreecommitdiff
path: root/svx/source/tbxctrls/linectrl.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-11-04 14:48:16 +0000
committerKurt Zenker <kz@openoffice.org>2005-11-04 14:48:16 +0000
commitbff1ee701fb596b61a190a97b16d6b657f5f25c1 (patch)
treee580b6f5fab054c8aeb573879bf932af4f17e4a7 /svx/source/tbxctrls/linectrl.cxx
parentb67b80aec2fdb73d64fde48283d69de656f4a420 (diff)
INTEGRATION: CWS fwk25 (1.10.88); FILE MERGED
2005/10/20 08:41:10 cd 1.10.88.1: #122984# Check SfxPoolItem pointer before use
Diffstat (limited to 'svx/source/tbxctrls/linectrl.cxx')
-rw-r--r--svx/source/tbxctrls/linectrl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/tbxctrls/linectrl.cxx b/svx/source/tbxctrls/linectrl.cxx
index 753edf93d0ce..106c9a7cd7d3 100644
--- a/svx/source/tbxctrls/linectrl.cxx
+++ b/svx/source/tbxctrls/linectrl.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: linectrl.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 00:50:34 $
+ * last change: $Author: kz $ $Date: 2005-11-04 15:48:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -681,7 +681,7 @@ void SvxLineEndWindow::StateChanged(
if ( nSID == SID_LINEEND_LIST )
{
// Die Liste der LinienEnden (LineEndList) hat sich geaendert:
- if ( pState->ISA( SvxLineEndListItem ))
+ if ( pState && pState->ISA( SvxLineEndListItem ))
{
pLineEndList = ((SvxLineEndListItem*)pState)->GetLineEndList();
DBG_ASSERT( pLineEndList, "LineEndList nicht gefunden" );