diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-27 08:30:56 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:24:36 +0100 |
commit | 645751bcaba174ab06d50a4f3d604386274fa2ca (patch) | |
tree | c5d4f2af0ef8984cd8c2d94583afae8fd997c232 /ucb | |
parent | 62e67d1a0a3577de9d8886b484c7b4af41be755e (diff) |
Apparently broken bitmask creation
Change-Id: I001a529b6690fe421d626133e0257c71df1d5ddf
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_content.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_content.cxx b/ucb/source/ucp/tdoc/tdoc_content.cxx index 639c0fffbdc0..04312d0d5429 100644 --- a/ucb/source/ucp/tdoc/tdoc_content.cxx +++ b/ucb/source/ucp/tdoc/tdoc_content.cxx @@ -1049,10 +1049,10 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues( -1, getCppuType( static_cast< const OUString * >( 0 ) ), // Title is read-only for root and documents. - beans::PropertyAttribute::BOUND || - ( ( eType == ROOT ) || ( eType == DOCUMENT ) ) + beans::PropertyAttribute::BOUND | + ( ( eType == ROOT ) || ( eType == DOCUMENT ) ? beans::PropertyAttribute::READONLY - : 0 ), + : 0 ) ), rData.getTitle() ); xRow->appendBoolean( beans::Property( OUString("IsDocument"), |