summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/statement.cxx
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-23 12:33:59 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-23 12:33:59 +0000
commitb94ef5f8bfd903c156dc62f260d53eee850031ae (patch)
treef9a80121c5ce0ef9758986709d574f100b1db84c /dbaccess/source/core/api/statement.cxx
parent847551e5c2587dade74cfa9491f9e449bed577e3 (diff)
replaced: OSL_ENSHURE->OSL_ENSURE
Diffstat (limited to 'dbaccess/source/core/api/statement.cxx')
-rw-r--r--dbaccess/source/core/api/statement.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/core/api/statement.cxx b/dbaccess/source/core/api/statement.cxx
index 66b56f18acaf..0f11a62c7341 100644
--- a/dbaccess/source/core/api/statement.cxx
+++ b/dbaccess/source/core/api/statement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: statement.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: oj $ $Date: 2000-10-25 07:32:18 $
+ * last change: $Author: jl $ $Date: 2001-03-23 13:18:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -262,7 +262,7 @@ sal_Bool OStatementBase::convertFastPropertyValue( Any & rConvertedValue, Any &
::rtl::OUString aPropName;
sal_Int16 nAttributes;
getInfoHelper().fillPropertyMembersByHandle(&aPropName, &nAttributes, nHandle);
- OSL_ENSHURE(aPropName.getLength(), "property not found?");
+ OSL_ENSURE(aPropName.getLength(), "property not found?");
// now set the value
m_xAggregateAsSet->setPropertyValue(aPropName, rValue);
@@ -299,7 +299,7 @@ void OStatementBase::getFastPropertyValue( Any& rValue, sal_Int32 nHandle ) cons
sal_Int16 nAttributes;
const_cast<OStatementBase*>(this)->getInfoHelper().
fillPropertyMembersByHandle(&aPropName, &nAttributes, nHandle);
- OSL_ENSHURE(aPropName.getLength(), "property not found?");
+ OSL_ENSURE(aPropName.getLength(), "property not found?");
// now read the value
rValue = m_xAggregateAsSet->getPropertyValue(aPropName);
}