diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-03-30 07:37:15 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-03-30 07:37:15 +0000 |
commit | 4379dd75f41eb89b2badf1476cef35683624eb6e (patch) | |
tree | 39bf0a0c00a128e9ac647284ff74734f4f446049 /xmlhelp | |
parent | f2e37233055fd2b830330f8b00384452d7207c00 (diff) |
INTEGRATION: CWS fwkfinal3 (1.12.22); FILE MERGED
2005/03/21 13:31:47 abi 1.12.22.1: bdb change
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/com/sun/star/help/HelpIndexer.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlhelp/source/com/sun/star/help/HelpIndexer.java b/xmlhelp/source/com/sun/star/help/HelpIndexer.java index 86080bf79c35..500c59cb2bf4 100644 --- a/xmlhelp/source/com/sun/star/help/HelpIndexer.java +++ b/xmlhelp/source/com/sun/star/help/HelpIndexer.java @@ -2,9 +2,9 @@ * * $RCSfile: HelpIndexer.java,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: rt $ $Date: 2005-01-27 10:07:02 $ + * last change: $Author: rt $ $Date: 2005-03-30 08:37:15 $ * * The Contents of this file are made available subject to tUhe terms of * either of the following licenses @@ -191,7 +191,7 @@ public class HelpIndexer { String fileName = installDirectory + _language + File.separator + _module + ".db"; - table.open(fileName, null, Db.DB_BTREE, Db.DB_RDONLY, 0644); + table.open(null,fileName, null, Db.DB_BTREE, Db.DB_RDONLY, 0644); Dbc cursor = table.cursor(null, 0); StringDbt key = new StringDbt(); StringDbt data = new StringDbt(); @@ -440,7 +440,7 @@ public class HelpIndexer { + _module + ".key"; - table.open(fileName, null, Db.DB_BTREE, Db.DB_CREATE, 0644); + table.open(null,fileName, null, Db.DB_BTREE, Db.DB_CREATE, 0644); for (int i = 0; i < list.length; ++i) { Data data = (Data) _hash.get(list[i]); @@ -475,7 +475,7 @@ public class HelpIndexer { + _module + ".ht"; - table.open(fileName, null, Db.DB_BTREE, Db.DB_CREATE, 0644); + table.open(null,fileName, null, Db.DB_BTREE, Db.DB_CREATE, 0644); for (int i = 0; i < list.length; ++i) { String data = (String) _hashHelptext.get(list[i]); |