summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2003-09-04 07:23:24 +0000
committerOliver Bolte <obo@openoffice.org>2003-09-04 07:23:24 +0000
commit8f8c53e0854dd4e3caa7db21ddca6f21e14f79f9 (patch)
tree94eeeeef09c671dcddf3c38d12ea55bf4ecdec1b /connectivity
parent1d987a37a698f8372dbd329a5f206c75f8188260 (diff)
INTEGRATION: CWS oj4 (1.10.100); FILE MERGED
2003/06/27 13:37:50 oj 1.10.100.1: #i14648# implement string functions for file based drivers
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/calc/CResultSet.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/calc/CResultSet.cxx b/connectivity/source/drivers/calc/CResultSet.cxx
index 8ccd83b14e7b..1945b3ae1f1a 100644
--- a/connectivity/source/drivers/calc/CResultSet.cxx
+++ b/connectivity/source/drivers/calc/CResultSet.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: CResultSet.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: oj $ $Date: 2001-10-26 07:44:58 $
+ * last change: $Author: obo $ $Date: 2003-09-04 08:23:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -136,7 +136,7 @@ Any SAL_CALL OCalcResultSet::getBookmark( ) throw( SQLException, RuntimeExcept
checkDisposed(OResultSet_BASE::rBHelper.bDisposed);
- return makeAny((sal_Int32)(*m_aRow)[0]);
+ return makeAny((sal_Int32)(*m_aRow)[0]->getValue());
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL OCalcResultSet::moveToBookmark( const Any& bookmark ) throw( SQLException, RuntimeException)