summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-01 13:07:23 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-01 13:07:23 +0000
commit396fa0876b22229dd1df8d7c68d06595cf679cee (patch)
tree48ce48a0044126b783ea147f05728d7d8bb21b8c /xmlhelp
parent9534ba2c0d4acf3fdfe1f7f34278f038de4287e7 (diff)
INTEGRATION: CWS abi31 (1.47.4); FILE MERGED
2006/10/26 14:53:06 abi 1.47.4.1: i#69213# applied patch
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/databases.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx
index 77e4aa9af42b..e69507e01dd0 100644
--- a/xmlhelp/source/cxxhelp/provider/databases.cxx
+++ b/xmlhelp/source/cxxhelp/provider/databases.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: databases.cxx,v $
*
- * $Revision: 1.47 $
+ * $Revision: 1.48 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 11:27:32 $
+ * last change: $Author: vg $ $Date: 2006-11-01 14:07:23 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -574,7 +574,7 @@ Db* Databases::getBerkeley( const rtl::OUString& Database,
if( aPair.second && ! it->second )
{
- Db* table = new Db( 0,DB_CXX_NO_EXCEPTIONS );
+ Db* table = new Db();
rtl::OUString fileNameOU =
getInstallPathAsSystemPath() +
@@ -797,7 +797,7 @@ KeywordInfo* Databases::getKeyword( const rtl::OUString& Database,
fileNameOU.getLength(),
osl_getThreadTextEncoding() );
- Db table(0,DB_CXX_NO_EXCEPTIONS);
+ Db table;
if( 0 == table.open( 0,fileName.getStr(),0,DB_BTREE,DB_RDONLY,0644 ) )
{
std::vector<KeywordInfo::KeywordElement> aVector;