diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_content.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/cmis/cmis_content.cxx b/ucb/source/ucp/cmis/cmis_content.cxx index ddf09ba56342..fb78931c6ba0 100644 --- a/ucb/source/ucp/cmis/cmis_content.cxx +++ b/ucb/source/ucp/cmis/cmis_content.cxx @@ -352,7 +352,7 @@ namespace cmis { boost::shared_ptr< libcmis::AllowableActions > allowableActions = getObject()->getAllowableActions( ); sal_Bool bReadOnly = sal_False; - if ( allowableActions->isAllowed( libcmis::ObjectAction::SetContentStream ) ) + if ( !allowableActions->isAllowed( libcmis::ObjectAction::SetContentStream ) ) bReadOnly = sal_True; xRow->appendBoolean( rProp, bReadOnly ); |