Kaydet (Commit) eda8e4c4 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

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
üst 2278ae78
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: sbxmod.cxx,v $ * $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 * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -2083,7 +2083,7 @@ void SbMethod::Broadcast( ULONG nHintId ) ...@@ -2083,7 +2083,7 @@ void SbMethod::Broadcast( ULONG nHintId )
if( !CanWrite() ) if( !CanWrite() )
return; return;
if( !pMod->IsCompiled() ) if( pMod && !pMod->IsCompiled() )
pMod->Compile(); pMod->Compile();
// Block broadcasts while creating new method // Block broadcasts while creating new method
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment