diff options
author | Joachim Lingner <jl@openoffice.org> | 2001-03-20 16:03:18 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2001-03-20 16:03:18 +0000 |
commit | 310f089cd51529e9ead88e1ae77b77976be5f55e (patch) | |
tree | da785e234750343a2ea485bd07452a29c2db3775 /connectivity/source/drivers/jdbc/SQLException.cxx | |
parent | e614c7bf0c873bb45bb75b83639c3dceeb4a0dbd (diff) |
OSL_ENSHURE replaced by OSL_ENSURE
Diffstat (limited to 'connectivity/source/drivers/jdbc/SQLException.cxx')
-rw-r--r-- | connectivity/source/drivers/jdbc/SQLException.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/jdbc/SQLException.cxx b/connectivity/source/drivers/jdbc/SQLException.cxx index 1a83ce996314..9107316d9d3f 100644 --- a/connectivity/source/drivers/jdbc/SQLException.cxx +++ b/connectivity/source/drivers/jdbc/SQLException.cxx @@ -2,9 +2,9 @@ * * $RCSfile: SQLException.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:14:22 $ + * last change: $Author: jl $ $Date: 2001-03-20 17:03:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -102,7 +102,7 @@ jclass java_sql_SQLException_BASE::getMyClass() SDBThreadAttach t; if( !t.pEnv ) return (jclass)NULL; jclass tempClass = t.pEnv->FindClass("java/sql/SQLException"); - OSL_ENSHURE(tempClass,"Java : FindClass nicht erfolgreich!"); + OSL_ENSURE(tempClass,"Java : FindClass nicht erfolgreich!"); if(!tempClass) { t.pEnv->ExceptionDescribe(); @@ -168,7 +168,7 @@ starsdbc::SQLException java_sql_SQLException_BASE::getNextException() const sal_Int32 java_sql_SQLException_BASE::getErrorCode() const { jint out(0); - SDBThreadAttach t; OSL_ENSHURE(t.pEnv,"Java Enviroment gelöscht worden!"); + SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gelöscht worden!"); if( t.pEnv ){ // temporaere Variable initialisieren |