diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2013-03-17 19:41:29 +0100 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-03-18 06:07:13 +0000 |
commit | 707bd4dfe85514418aaffa3ee9ece10b356abf51 (patch) | |
tree | 207814d6e096bcfec9a3645e832f02a55a0e52d6 /sw | |
parent | 6dfe7e790352e3e3ff63cfd8b142a8fc007b496c (diff) |
WaE: control might reach end of non-void function ... being inlined
The warning is bogus, but the change is minimal
Change-Id: I2bc6ec57d271e14e5abe8f152338626771458fb5
Reviewed-on: https://gerrit.libreoffice.org/2803
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/writerhelper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/writerhelper.hxx b/sw/source/filter/ww8/writerhelper.hxx index 3d45b43c7851..4768a3efde7e 100644 --- a/sw/source/filter/ww8/writerhelper.hxx +++ b/sw/source/filter/ww8/writerhelper.hxx @@ -182,8 +182,8 @@ namespace sw return (maGrf == rOther.maGrf); else if ((!mbForBullet) && (!rOther.mbForBullet)) return (mpFlyFrm == rOther.mpFlyFrm); - else - return false; + + return false; } /** The Size of the contained element |