diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:39:17 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 23:39:17 +0000 |
commit | 0d2c02ce191ac9ae0d25a46445c8f009040029ef (patch) | |
tree | f930da608badde4cf71c1acec54faf7563a3fa94 /xmlhelp | |
parent | 2116aa79e9c2c7e808c2d82e2f8787543c5c0887 (diff) |
INTEGRATION: CWS warnings01 (1.5.18); FILE MERGED
2006/04/06 14:48:33 ab 1.5.18.2: #i55991# warning-free code
2005/12/15 16:36:43 ab 1.5.18.1: #i53898# Removed warnings for unxlngi6/unxlngi6.pro
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/db.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/db.hxx b/xmlhelp/source/cxxhelp/provider/db.hxx index fb2b8776823e..5b3244efc948 100644 --- a/xmlhelp/source/cxxhelp/provider/db.hxx +++ b/xmlhelp/source/cxxhelp/provider/db.hxx @@ -4,9 +4,9 @@ * * $RCSfile: db.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-09 12:19:26 $ + * last change: $Author: hr $ $Date: 2006-06-20 00:39:17 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -47,7 +47,7 @@ extern "C" { typedef void *(*db_malloc_fcn_type)(size_t); typedef void *(*db_realloc_fcn_type)(void *, size_t); typedef void (*db_free_fcn_type)(void *); -}; +} namespace berkeleydbproxy { @@ -73,8 +73,8 @@ namespace berkeleydbproxy { { rtl::OString what_; public: - explicit DbException(rtl::OString const & what) - : what_(what) + explicit DbException(rtl::OString const & whatparam) + : what_(whatparam) {} const char *what() const |