summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-07-01 13:52:35 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-07-01 13:52:35 +0000
commiteda8e4c4dabd24afd1bc29428ecee920320d5da1 (patch)
treef3b31ea95e85cac68f8f56b2f9292c0e5b164c34 /basic
parent2278ae78ff0c7972f51d9f281ec69bc6f93566df (diff)
INTEGRATION: CWS vcl14 (1.14.10); FILE MERGED
2003/06/27 14:23:12 ab 1.14.10.1: #110072# SbMethod::Broadcast(): Check pMod for NULL
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbxmod.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx
index 5ab81f82fdf2..31422b025b24 100644
--- a/basic/source/classes/sbxmod.cxx
+++ b/basic/source/classes/sbxmod.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sbxmod.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: vg $ $Date: 2003-05-22 08:52:42 $
+ * last change: $Author: vg $ $Date: 2003-07-01 14:52:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -2083,7 +2083,7 @@ void SbMethod::Broadcast( ULONG nHintId )
if( !CanWrite() )
return;
- if( !pMod->IsCompiled() )
+ if( pMod && !pMod->IsCompiled() )
pMod->Compile();
// Block broadcasts while creating new method