diff options
author | Ocke Janssen <oj@openoffice.org> | 2000-12-13 13:33:06 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2000-12-13 13:33:06 +0000 |
commit | 580057c241c76395f8f9a1c5a5749769a29afa88 (patch) | |
tree | 935213962623f56c8128055291150336b4be12c1 /connectivity/source/inc/file/FTable.hxx | |
parent | 13e268c0a2830e4daace91460633bc3bd41da756 (diff) |
#81925# return !m_bWriteable
Diffstat (limited to 'connectivity/source/inc/file/FTable.hxx')
-rw-r--r-- | connectivity/source/inc/file/FTable.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/inc/file/FTable.hxx b/connectivity/source/inc/file/FTable.hxx index fad0bd596772..8345ffb41778 100644 --- a/connectivity/source/inc/file/FTable.hxx +++ b/connectivity/source/inc/file/FTable.hxx @@ -2,9 +2,9 @@ * * $RCSfile: FTable.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: oj $ $Date: 2000-12-12 07:21:29 $ + * last change: $Author: oj $ $Date: 2000-12-13 14:33:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -156,7 +156,7 @@ namespace connectivity ::rtl::OUString SAL_CALL getName() { return m_Name; } ::rtl::OUString getSchema() { return m_SchemaName; } - sal_Bool isReadOnly() const { return m_bWriteable; } + sal_Bool isReadOnly() const { return !m_bWriteable; } // m_pFileStream && !m_pFileStream->IsWritable(); } // com::sun::star::lang::XUnoTunnel virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException); |