diff options
author | Andreas Bille <abi@openoffice.org> | 2002-10-31 13:02:26 +0000 |
---|---|---|
committer | Andreas Bille <abi@openoffice.org> | 2002-10-31 13:02:26 +0000 |
commit | 0dfc10982adda6ecf1698e66e90fd330935c5f6b (patch) | |
tree | 0972b91c64b13f118b1cbe84338c74dc1804f11c /xmlhelp | |
parent | 21558bc26d6738ac99f5ed1fbdc95afafcbb57fa (diff) |
#98623# Removed (accidental) redefinition of member variable in local scope
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/qe/XmlIndex.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlhelp/source/cxxhelp/qe/XmlIndex.cxx b/xmlhelp/source/cxxhelp/qe/XmlIndex.cxx index bc297d272c36..0ce61e5eb927 100644 --- a/xmlhelp/source/cxxhelp/qe/XmlIndex.cxx +++ b/xmlhelp/source/cxxhelp/qe/XmlIndex.cxx @@ -2,9 +2,9 @@ * * $RCSfile: XmlIndex.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: abi $ $Date: 2002-02-06 12:10:31 $ + * last change: $Author: abi $ $Date: 2002-10-31 14:02:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -286,7 +286,7 @@ XmlIndex::XmlIndex( const rtl::OUString& indexDir ) // Determine index in file int idx[NAMECOUNT]; - int linkNamesL_ = NAMECOUNT; + /*int*/ linkNamesL_ = NAMECOUNT; for( i = 0; i < NAMECOUNT; ++i ) if( ( idx[i] = aStr.indexOf( LN[i] ) ) == -1 ) { idx[i] = UNREACHABLEPLACE; @@ -312,9 +312,9 @@ XmlIndex::XmlIndex( const rtl::OUString& indexDir ) { - contextTables_ = new ContextTables( contextsOffsets_, - contextsDataL_,contextsData_, - linkNamesL_,linkNames_ ); + contextTables_ = new ContextTables(contextsOffsets_, + contextsDataL_,contextsData_, + linkNamesL_,linkNames_ ); } } |