diff options
author | Ocke Janssen <oj@openoffice.org> | 2000-10-30 10:00:36 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2000-10-30 10:00:36 +0000 |
commit | 93b088b7ccb19c0af1dc743501405c24ae34f86a (patch) | |
tree | b5c5d41a06ebe3d834bec1a0c6e63d1548184a85 /connectivity/source/sdbcx | |
parent | 00b3648bc2de353a22433fa41d7504096532c315 (diff) |
some changes for linux
Diffstat (limited to 'connectivity/source/sdbcx')
-rw-r--r-- | connectivity/source/sdbcx/VColumn.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/sdbcx/VIndex.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/sdbcx/VKey.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/sdbcx/VTable.cxx | 14 |
4 files changed, 16 insertions, 16 deletions
diff --git a/connectivity/source/sdbcx/VColumn.cxx b/connectivity/source/sdbcx/VColumn.cxx index 78659bc704c5..7b788a017306 100644 --- a/connectivity/source/sdbcx/VColumn.cxx +++ b/connectivity/source/sdbcx/VColumn.cxx @@ -2,9 +2,9 @@ * * $RCSfile: VColumn.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: oj $ $Date: 2000-10-30 07:53:49 $ + * last change: $Author: oj $ $Date: 2000-10-30 10:56:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -132,7 +132,7 @@ Sequence< Type > SAL_CALL OColumn::getTypes( ) throw(RuntimeException) Reference< XPropertySet > SAL_CALL OColumn::createDataDescriptor( ) throw(RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - if (rBHelper.bDisposed) + if (OColumnDescriptor_BASE::rBHelper.bDisposed) throw DisposedException(); return this; } diff --git a/connectivity/source/sdbcx/VIndex.cxx b/connectivity/source/sdbcx/VIndex.cxx index d6e906dfdd7d..9b263fa7ed74 100644 --- a/connectivity/source/sdbcx/VIndex.cxx +++ b/connectivity/source/sdbcx/VIndex.cxx @@ -2,9 +2,9 @@ * * $RCSfile: VIndex.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: oj $ $Date: 2000-10-30 07:53:49 $ + * last change: $Author: oj $ $Date: 2000-10-30 10:56:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -124,7 +124,7 @@ Sequence< Type > SAL_CALL OIndex::getTypes( ) throw(RuntimeException) Reference< XPropertySet > SAL_CALL OIndex::createDataDescriptor( ) throw(RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - if (rBHelper.bDisposed) + if (ODescriptor_BASE::rBHelper.bDisposed) throw DisposedException(); return this; diff --git a/connectivity/source/sdbcx/VKey.cxx b/connectivity/source/sdbcx/VKey.cxx index 55f88f5995e5..26ef5a416976 100644 --- a/connectivity/source/sdbcx/VKey.cxx +++ b/connectivity/source/sdbcx/VKey.cxx @@ -2,9 +2,9 @@ * * $RCSfile: VKey.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: oj $ $Date: 2000-10-30 07:53:49 $ + * last change: $Author: oj $ $Date: 2000-10-30 10:56:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -115,7 +115,7 @@ Sequence< Type > SAL_CALL OKey::getTypes( ) throw(RuntimeException) Reference< XPropertySet > SAL_CALL OKey::createDataDescriptor( ) throw(RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - if (rBHelper.bDisposed) + if (ODescriptor_BASE::rBHelper.bDisposed) throw DisposedException(); return this; diff --git a/connectivity/source/sdbcx/VTable.cxx b/connectivity/source/sdbcx/VTable.cxx index 630766e6f14d..bde044e11cb7 100644 --- a/connectivity/source/sdbcx/VTable.cxx +++ b/connectivity/source/sdbcx/VTable.cxx @@ -2,9 +2,9 @@ * * $RCSfile: VTable.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: oj $ $Date: 2000-10-30 07:53:49 $ + * last change: $Author: oj $ $Date: 2000-10-30 10:56:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -140,7 +140,7 @@ void SAL_CALL OTable::disposing(void) Reference< XPropertySet > SAL_CALL OTable::createDataDescriptor( ) throw(RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - if (rBHelper.bDisposed) + if (OTableDescriptor_BASE::rBHelper.bDisposed) throw DisposedException(); return this; @@ -150,7 +150,7 @@ Reference< XPropertySet > SAL_CALL OTable::createDataDescriptor( ) throw(Runtim Reference< XNameAccess > SAL_CALL OTable::getIndexes( ) throw(RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - if (rBHelper.bDisposed) + if (OTableDescriptor_BASE::rBHelper.bDisposed) throw DisposedException(); if(!m_pIndexes) @@ -163,7 +163,7 @@ Reference< XNameAccess > SAL_CALL OTable::getIndexes( ) throw(RuntimeException) void SAL_CALL OTable::rename( const ::rtl::OUString& newName ) throw(SQLException, ElementExistException, RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - if (rBHelper.bDisposed) + if (OTableDescriptor_BASE::rBHelper.bDisposed) throw DisposedException(); } @@ -172,7 +172,7 @@ void SAL_CALL OTable::rename( const ::rtl::OUString& newName ) throw(SQLExceptio void SAL_CALL OTable::alterColumnByName( const ::rtl::OUString& colName, const Reference< XPropertySet >& descriptor ) throw(SQLException, NoSuchElementException, RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - if (rBHelper.bDisposed) + if (OTableDescriptor_BASE::rBHelper.bDisposed) throw DisposedException(); } @@ -180,7 +180,7 @@ void SAL_CALL OTable::alterColumnByName( const ::rtl::OUString& colName, const R void SAL_CALL OTable::alterColumnByIndex( sal_Int32 index, const Reference< XPropertySet >& descriptor ) throw(SQLException, ::com::sun::star::lang::IndexOutOfBoundsException, RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - if (rBHelper.bDisposed) + if (OTableDescriptor_BASE::rBHelper.bDisposed) throw DisposedException(); } |