summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2002-01-11 08:25:24 +0000
committerOcke Janssen <oj@openoffice.org>2002-01-11 08:25:24 +0000
commitc3eaab82eb7144debe2fd6aaab49cd99cc1eac49 (patch)
tree2934ec8db56f266e96b028e2a5edfddf2d539de8
parent134c18cbe2681980e9e3f6c1cc475a26721d931c (diff)
#96423# change interface pointer against NULL
-rw-r--r--connectivity/source/drivers/odbc/OResultSet.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/drivers/odbc/OResultSet.cxx b/connectivity/source/drivers/odbc/OResultSet.cxx
index a40df47b8b8d..d4dae1e5eb48 100644
--- a/connectivity/source/drivers/odbc/OResultSet.cxx
+++ b/connectivity/source/drivers/odbc/OResultSet.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: OResultSet.cxx,v $
*
- * $Revision: 1.48 $
+ * $Revision: 1.49 $
*
- * last change: $Author: oj $ $Date: 2001-11-30 14:09:44 $
+ * last change: $Author: oj $ $Date: 2002-01-11 09:25:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1275,13 +1275,13 @@ sal_Bool OResultSet::isBookmarkable() const
return sal_False;
break;
case SQL_CURSOR_STATIC:
- OTools::GetInfo(m_pStatement->getOwnConnection(),m_aConnectionHandle,SQL_STATIC_CURSOR_ATTRIBUTES1,nAttr,*(Reference< XInterface >*)this);
+ OTools::GetInfo(m_pStatement->getOwnConnection(),m_aConnectionHandle,SQL_STATIC_CURSOR_ATTRIBUTES1,nAttr,NULL);
break;
case SQL_CURSOR_KEYSET_DRIVEN:
- OTools::GetInfo(m_pStatement->getOwnConnection(),m_aConnectionHandle,SQL_KEYSET_CURSOR_ATTRIBUTES1,nAttr,*(Reference< XInterface >*)this);
+ OTools::GetInfo(m_pStatement->getOwnConnection(),m_aConnectionHandle,SQL_KEYSET_CURSOR_ATTRIBUTES1,nAttr,NULL);
break;
case SQL_CURSOR_DYNAMIC:
- OTools::GetInfo(m_pStatement->getOwnConnection(),m_aConnectionHandle,SQL_DYNAMIC_CURSOR_ATTRIBUTES1,nAttr,*(Reference< XInterface >*)this);
+ OTools::GetInfo(m_pStatement->getOwnConnection(),m_aConnectionHandle,SQL_DYNAMIC_CURSOR_ATTRIBUTES1,nAttr,NULL);
break;
}
}