summaryrefslogtreecommitdiffstats
path: root/xmlhelp
diff options
context:
space:
mode:
authorAndreas Bille <abi@openoffice.org>2002-10-31 13:02:26 +0000
committerAndreas Bille <abi@openoffice.org>2002-10-31 13:02:26 +0000
commit0dfc10982adda6ecf1698e66e90fd330935c5f6b (patch)
tree0972b91c64b13f118b1cbe84338c74dc1804f11c /xmlhelp
parent#103692# Corrected errors (diff)
downloadcore-0dfc10982adda6ecf1698e66e90fd330935c5f6b.tar.gz
core-0dfc10982adda6ecf1698e66e90fd330935c5f6b.zip
#98623# Removed (accidental) redefinition of member variable in local scope
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/qe/XmlIndex.cxx12
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_ );
}
}