diff options
author | Andreas Bregas <ab@openoffice.org> | 2001-09-04 09:07:46 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2001-09-04 09:07:46 +0000 |
commit | 5d5e9cf6024b77fa1fa685534ba796b6abc13cbe (patch) | |
tree | 758d6748fe088a1151c69f7bb8cf8bb8e80f8891 /basic/source/comp | |
parent | b8f0e34417d985062487c8e2c33d8779538eebe2 (diff) |
#88329# Initialise SbiSymDef global flag
Diffstat (limited to 'basic/source/comp')
-rw-r--r-- | basic/source/comp/symtbl.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx index 1e5f7d714f9e..025b3c3e5021 100644 --- a/basic/source/comp/symtbl.cxx +++ b/basic/source/comp/symtbl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: symtbl.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:12:10 $ + * last change: $Author: ab $ $Date: 2001-09-04 10:07:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -334,7 +334,8 @@ SbiSymDef::SbiSymDef( const String& rName ) : aName( rName ) bStatic = bOpt = bByVal = - bChained = FALSE; + bChained = + bGlobal = FALSE; pIn = pPool = NULL; } |