diff options
author | Andreas Bregas <ab@openoffice.org> | 2002-04-18 08:18:10 +0000 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2002-04-18 08:18:10 +0000 |
commit | eacc6c4a6263e2e25b48cd822115721ff605facb (patch) | |
tree | 52aa70122efc7ab9e9b178af084d8cb07ce21911 /xmlscript/inc | |
parent | faa17780a915808f408834f75a663f867134fa35 (diff) |
#98610# Initialise LibCount in LibDescriptorArray default ctor
Diffstat (limited to 'xmlscript/inc')
-rw-r--r-- | xmlscript/inc/xmlscript/xmllib_imexp.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlscript/inc/xmlscript/xmllib_imexp.hxx b/xmlscript/inc/xmlscript/xmllib_imexp.hxx index 420f499a230f..7031eee593c4 100644 --- a/xmlscript/inc/xmlscript/xmllib_imexp.hxx +++ b/xmlscript/inc/xmlscript/xmllib_imexp.hxx @@ -2,9 +2,9 @@ * * $RCSfile: xmllib_imexp.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: ab $ $Date: 2001-11-07 18:24:39 $ + * last change: $Author: ab $ $Date: 2002-04-18 09:18:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -97,7 +97,7 @@ struct LibDescriptorArray LibDescriptor* mpLibs; sal_Int32 mnLibCount; - LibDescriptorArray( void ) { mpLibs = NULL; } + LibDescriptorArray( void ) { mpLibs = NULL; mnLibCount = 0; } LibDescriptorArray( sal_Int32 nLibCount ); ~LibDescriptorArray(); |