diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-05-25 06:45:31 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-05-25 06:45:31 +0000 |
commit | 1bd02fc6a710c1443161d81b3d5cc006870fa643 (patch) | |
tree | d2aa3024d20bedc56547efd2bf0d748ca9a962aa /connectivity/source/sdbcx | |
parent | c8a9c25e70a36a3a398af7fc03fe7854198183b6 (diff) |
#87322# remove sal_No_VTABLE from file columns
Diffstat (limited to 'connectivity/source/sdbcx')
-rw-r--r-- | connectivity/source/sdbcx/VTable.cxx | 10 |
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 |