diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-30 12:26:18 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-30 12:27:14 +0300 |
commit | c276830bd7d7e405b3a1cf54f2181784bf137883 (patch) | |
tree | 0bdf0cb12e44c75474e0c4ad65b6b06df3e21295 | |
parent | 82e8c6a6990571a558e13ebff85edb3b5d511866 (diff) |
One more -Werror=parentheses
Change-Id: I21ebdcade15d7b66c2ed79584f5999f0421a049d
-rw-r--r-- | sw/source/core/layout/calcmove.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/core/layout/calcmove.cxx b/sw/source/core/layout/calcmove.cxx index 109f77d6d5c6..348789afeafb 100644 --- a/sw/source/core/layout/calcmove.cxx +++ b/sw/source/core/layout/calcmove.cxx @@ -1377,7 +1377,8 @@ void SwCntntFrm::MakeAll() } if( GetFollow() ) Prepare( PREP_WIDOWS_ORPHANS, 0, false ); - mbValidSize = bFormatted = sal_True; + mbValidSize = true; + bFormatted = sal_True; Format(); } } |