diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-01-13 15:52:23 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-01-13 15:52:23 +0100 |
commit | a2dd3feaea16a765956aecacdd6cc21ab5404a5b (patch) | |
tree | 287f07f07c522994112c1b2bba8762851c75a4e5 /ucb | |
parent | 88fae025760982d1fa46265e6c730419a5853ed6 (diff) |
Add missing parenthesis
Like this since 29/06/2001 (5ef2de612d973bc747ff4a107e4e4c4ecb273429)
Change-Id: Ic86d6ca473a8bdf8f4c6f216fb6dd20af4694911
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/bc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/file/bc.cxx b/ucb/source/ucp/file/bc.cxx index f6063cc67a21..a08e033e0314 100644 --- a/ucb/source/ucp/file/bc.cxx +++ b/ucb/source/ucp/file/bc.cxx @@ -1172,7 +1172,7 @@ void SAL_CALL BaseContent::insert( sal_Int32 nMyCommandIdentifier, // Inserts the content, which has the flag m_bIsFresh - if( ! m_nState & NameForInsertionSet ) + if( ! (m_nState & NameForInsertionSet) ) { m_pMyShell->installError( nMyCommandIdentifier, TASKHANDLING_NONAMESET_INSERT_COMMAND ); |