summaryrefslogtreecommitdiff
path: root/connectivity/source/sdbcx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-05-25 06:45:31 +0000
committerOcke Janssen <oj@openoffice.org>2001-05-25 06:45:31 +0000
commit1bd02fc6a710c1443161d81b3d5cc006870fa643 (patch)
treed2aa3024d20bedc56547efd2bf0d748ca9a962aa /connectivity/source/sdbcx
parentc8a9c25e70a36a3a398af7fc03fe7854198183b6 (diff)
#87322# remove sal_No_VTABLE from file columns
Diffstat (limited to 'connectivity/source/sdbcx')
-rw-r--r--connectivity/source/sdbcx/VTable.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/sdbcx/VTable.cxx b/connectivity/source/sdbcx/VTable.cxx
index 7c6bc0b93fdc..83bc553ca5cb 100644
--- a/connectivity/source/sdbcx/VTable.cxx
+++ b/connectivity/source/sdbcx/VTable.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: VTable.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: oj $ $Date: 2001-05-17 09:13:14 $
+ * last change: $Author: oj $ $Date: 2001-05-25 07:45:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -227,7 +227,7 @@ Reference< XNameAccess > SAL_CALL OTable::getColumns( ) throw(RuntimeException)
if(!m_pColumns)
refreshColumns();
- return const_cast<OTable*>(this)->m_pColumns;
+ return m_pColumns;
}
// -------------------------------------------------------------------------
@@ -241,7 +241,7 @@ Reference< XIndexAccess > SAL_CALL OTable::getKeys( ) throw(RuntimeException)
if(!m_pKeys)
refreshKeys();
- return const_cast<OTable*>(this)->m_pKeys;
+ return m_pKeys;
}
// -----------------------------------------------------------------------------
cppu::IPropertyArrayHelper* OTable::createArrayHelper( sal_Int32 _nId) const
@@ -276,7 +276,7 @@ Reference< XNameAccess > SAL_CALL OTable::getIndexes( ) throw(RuntimeException)
if(!m_pIndexes)
refreshIndexes();
- return const_cast<OTable*>(this)->m_pIndexes;
+ return m_pIndexes;
}
// -------------------------------------------------------------------------
// XRename