summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/db
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/db')
-rw-r--r--xmlhelp/source/cxxhelp/db/BtreeDict.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/xmlhelp/source/cxxhelp/db/BtreeDict.cxx b/xmlhelp/source/cxxhelp/db/BtreeDict.cxx
index bc58c3d8bcf9..166a4dc4982a 100644
--- a/xmlhelp/source/cxxhelp/db/BtreeDict.cxx
+++ b/xmlhelp/source/cxxhelp/db/BtreeDict.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: BtreeDict.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 12:17:11 $
+ * last change: $Author: hr $ $Date: 2006-06-20 00:38:05 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -37,9 +37,6 @@
#include <vector>
#define INCLUDED_STL_VECTOR
#endif
-#ifndef _RTL_USTRING_HXX_
-#include <rtl/ustring.hxx>
-#endif
#ifndef _XMLSEARCH_DB_BTREEDICT_HXX_
#include <db/BtreeDict.hxx>
#endif
@@ -387,9 +384,9 @@ void BlockProcessorImpl::process( Block* block ) const
BtreeDict::BtreeDict( const util::IndexAccessor& indexAccessor ) throw( IOException )
- : blocksL_( 0 ),
- blocks_( 0 ),
- blockManager_( new DBEnvImpl( indexAccessor ) ) // may throw IOExcption
+ : blockManager_( new DBEnvImpl( indexAccessor ) ), // may throw IOExcption
+ blocksL_( 0 ),
+ blocks_( 0 )
{
RandomAccessStream* SCHEMA = indexAccessor.getStream( rtl::OUString::createFromAscii( "SCHEMA" ),
@@ -642,6 +639,7 @@ void DBEnvImpl::read( sal_Int32 blNum,xmlsearch::db::Block*& block ) const
void DBEnvImpl::write( sal_Int32 blNum,xmlsearch::db::Block* block )
{
+ (void)blNum;
if( ! block )
return;
}