summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/adabas
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-21 12:47:12 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-21 12:47:12 +0000
commitac2bed3d723c55279d85a4f868244a0976b95ecd (patch)
tree4d1ae7cff5aeb5ac678079bbf8626302c8822ee5 /connectivity/source/drivers/adabas
parent20fe0d20fc1ab3abc821820e03bfbf03b8f344f9 (diff)
OSL_ENSHURE replaced by OSL_ENSURE
Diffstat (limited to 'connectivity/source/drivers/adabas')
-rw-r--r--connectivity/source/drivers/adabas/BPreparedStatement.cxx6
-rw-r--r--connectivity/source/drivers/adabas/BStatement.cxx6
-rw-r--r--connectivity/source/drivers/adabas/Bservices.cxx8
3 files changed, 10 insertions, 10 deletions
diff --git a/connectivity/source/drivers/adabas/BPreparedStatement.cxx b/connectivity/source/drivers/adabas/BPreparedStatement.cxx
index 936809ebb60b..f96b34b35111 100644
--- a/connectivity/source/drivers/adabas/BPreparedStatement.cxx
+++ b/connectivity/source/drivers/adabas/BPreparedStatement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: BPreparedStatement.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: oj $ $Date: 2001-01-22 07:20:50 $
+ * last change: $Author: jl $ $Date: 2001-03-21 13:38:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -109,7 +109,7 @@ Reference< XResultSet > OAdabasPreparedStatement::getResultSet (sal_Bool checkCo
if (numCols > 0)
{
- OSL_ENSHURE(m_aStatementHandle,"StatementHandle is null!");
+ OSL_ENSURE(m_aStatementHandle,"StatementHandle is null!");
pRs = new OAdabasResultSet(m_aStatementHandle,this);
// Save a copy of our last result set
diff --git a/connectivity/source/drivers/adabas/BStatement.cxx b/connectivity/source/drivers/adabas/BStatement.cxx
index e3fd373cee43..8bf13948bd22 100644
--- a/connectivity/source/drivers/adabas/BStatement.cxx
+++ b/connectivity/source/drivers/adabas/BStatement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: BStatement.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: oj $ $Date: 2001-01-22 07:24:15 $
+ * last change: $Author: jl $ $Date: 2001-03-21 13:38:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -109,7 +109,7 @@ Reference< XResultSet > OAdabasStatement::getResultSet (sal_Bool checkCount) thr
if (numCols > 0)
{
- OSL_ENSHURE(m_aStatementHandle,"StatementHandle is null!");
+ OSL_ENSURE(m_aStatementHandle,"StatementHandle is null!");
pRs = new OAdabasResultSet(m_aStatementHandle,this);
// Save a copy of our last result set
diff --git a/connectivity/source/drivers/adabas/Bservices.cxx b/connectivity/source/drivers/adabas/Bservices.cxx
index 7485587dc4b8..aaf7b7780a8a 100644
--- a/connectivity/source/drivers/adabas/Bservices.cxx
+++ b/connectivity/source/drivers/adabas/Bservices.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: Bservices.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:14:20 $
+ * last change: $Author: jl $ $Date: 2001-03-21 13:38:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -103,7 +103,7 @@ void REGISTER_PROVIDER(
aMainKeyName += OUString::createFromAscii("/UNO/SERVICES");
Reference< ::com::sun::star::registry::XRegistryKey > xNewKey( xKey->createKey(aMainKeyName) );
- OSL_ENSHURE(xNewKey.is(), "ADABAS::component_writeInfo : could not create a registry key !");
+ OSL_ENSURE(xNewKey.is(), "ADABAS::component_writeInfo : could not create a registry key !");
for (sal_uInt32 i=0; i<Services.getLength(); ++i)
xNewKey->createKey(Services[i]);
@@ -177,7 +177,7 @@ extern "C" sal_Bool SAL_CALL component_writeInfo(
}
catch (::com::sun::star::registry::InvalidRegistryException& )
{
- OSL_ENSHURE(sal_False, "ODBC::component_writeInfo : could not create a registry key ! ## InvalidRegistryException !");
+ OSL_ENSURE(sal_False, "ODBC::component_writeInfo : could not create a registry key ! ## InvalidRegistryException !");
}
return sal_False;