summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/tokstack.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 13:24:47 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 13:24:47 +0000
commit1a2881f8c4acb3110469f591075c70a76da97de9 (patch)
tree79210916bda25262570e94204614a0e172bcb7a5 /sc/source/filter/excel/tokstack.cxx
parent710031d055e8445bda9804017a0f1c46d4dc1360 (diff)
INTEGRATION: CWS ooo20031216 (1.3.344); FILE MERGED
2003/12/13 13:37:55 waratah 1.3.344.1: #i1858# replace some NULL constants with 0 (zero), used with non-pointers
Diffstat (limited to 'sc/source/filter/excel/tokstack.cxx')
-rw-r--r--sc/source/filter/excel/tokstack.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/excel/tokstack.cxx b/sc/source/filter/excel/tokstack.cxx
index fd637ec3408e..81f0aecafdf1 100644
--- a/sc/source/filter/excel/tokstack.cxx
+++ b/sc/source/filter/excel/tokstack.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tokstack.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mh $ $Date: 2001-10-23 09:37:15 $
+ * last change: $Author: hr $ $Date: 2004-02-04 14:24:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -132,11 +132,11 @@ TokenPool::TokenPool( void )
nP_Ext = 32;
ppP_Ext = new EXTCONT*[ nP_Ext ];
- memset( ppP_Ext, NULL, sizeof( EXTCONT* ) * nP_Ext );
+ memset( ppP_Ext, '\0', sizeof( EXTCONT* ) * nP_Ext );
nP_Nlf = 16;
ppP_Nlf = new NLFCONT*[ nP_Nlf ];
- memset( ppP_Nlf, NULL, sizeof( NLFCONT* ) * nP_Nlf );
+ memset( ppP_Nlf, '\0', sizeof( NLFCONT* ) * nP_Nlf );
pScToken = new ScTokenArray;