summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-10-05 13:18:41 +0000
committerKurt Zenker <kz@openoffice.org>2005-10-05 13:18:41 +0000
commit31c546be68532319655c696d610c2f110f6ee3d5 (patch)
treebff01c8e01105b61711ab657ea3ffefa87a6a414 /connectivity
parent30aa726e827dec743c80e5d4fb57be0617d91b41 (diff)
INTEGRATION: CWS intptr (1.58.114); FILE MERGED
2005/09/13 14:49:54 kendy 1.58.114.1: #i54498# Introduce and use sal_IntPtr/sal_uIntPtr for ints where we have to store a pointer
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/odbc/OResultSet.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/odbc/OResultSet.cxx b/connectivity/source/drivers/odbc/OResultSet.cxx
index 226bc361ccb2..96d7a732a3da 100644
--- a/connectivity/source/drivers/odbc/OResultSet.cxx
+++ b/connectivity/source/drivers/odbc/OResultSet.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: OResultSet.cxx,v $
*
- * $Revision: 1.60 $
+ * $Revision: 1.61 $
*
- * last change: $Author: hr $ $Date: 2005-09-23 11:41:49 $
+ * last change: $Author: kz $ $Date: 2005-10-05 14:18:41 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1676,7 +1676,7 @@ void OResultSet::fillNeededData(SQLRETURN _nRet)
if (nRet != SQL_SUCCESS && nRet != SQL_SUCCESS_WITH_INFO && nRet != SQL_NEED_DATA)
break;
- sal_Int32 nColumnIndex ( reinterpret_cast<sal_Int32>(pColumnIndex));
+ sal_IntPtr nColumnIndex ( reinterpret_cast<sal_IntPtr>(pColumnIndex));
Sequence< sal_Int8 > aSeq;
switch(m_aRow[nColumnIndex].getTypeKind())
{