diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2004-06-25 17:29:35 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2004-06-25 17:29:35 +0000 |
commit | 5c459f8330970157ffd54dd9ee7398c16c081a3e (patch) | |
tree | c1291c387a4a0a69ecb12f90668772fc0d4d20bb /connectivity/source/drivers/mozab/MResultSetMetaData.cxx | |
parent | 07483856b037f28efbe4a9b1b2f4f9e2ad65dd05 (diff) |
INTEGRATION: CWS mozab04 (1.2.182); FILE MERGED
2004/04/05 09:54:42 windly 1.2.182.1: #i20338# Read and Write access to Address Books
Diffstat (limited to 'connectivity/source/drivers/mozab/MResultSetMetaData.cxx')
-rw-r--r-- | connectivity/source/drivers/mozab/MResultSetMetaData.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/mozab/MResultSetMetaData.cxx b/connectivity/source/drivers/mozab/MResultSetMetaData.cxx index 9990907396d3..a70ace393a13 100644 --- a/connectivity/source/drivers/mozab/MResultSetMetaData.cxx +++ b/connectivity/source/drivers/mozab/MResultSetMetaData.cxx @@ -2,9 +2,9 @@ * * $RCSfile: MResultSetMetaData.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: oj $ $Date: 2001-11-26 13:51:14 $ + * last change: $Author: hjs $ $Date: 2004-06-25 18:29:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -215,7 +215,7 @@ sal_Bool SAL_CALL OResultSetMetaData::isReadOnly( sal_Int32 column ) throw(SQLEx sal_Bool bReadOnly = (*m_xColumns)[column-1]->getPropertySetInfo()->hasPropertyByName(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FUNCTION)) && ::cppu::any2bool((*m_xColumns)[column-1]->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_FUNCTION))); - return bReadOnly || m_pTable->isReadOnly(); + return m_bReadOnly || bReadOnly || m_pTable->isReadOnly(); } // ------------------------------------------------------------------------- |