summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpsection.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-08-17 01:55:03 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-08-17 05:15:27 +0200
commitf05d1812c069ad4471da21a8b6a0f9cc7717e37e (patch)
treec66c5c46ab12cdcb2de849bae228c6ef7599ffcf /lotuswordpro/source/filter/lwpsection.cxx
parentwarning C4800: 'sal_uInt32' : forcing value to bool 'true' or 'false' (diff)
downloadcore-f05d1812c069ad4471da21a8b6a0f9cc7717e37e.tar.gz
core-f05d1812c069ad4471da21a8b6a0f9cc7717e37e.zip
warning C4800: forcing value to bool 'true' or 'false'
Change-Id: I116d5e14116e6853765bce552b6b8a71c835942e
Diffstat (limited to 'lotuswordpro/source/filter/lwpsection.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpsection.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwpsection.cxx b/lotuswordpro/source/filter/lwpsection.cxx
index 42838566014d..ba9c512f5ab8 100644
--- a/lotuswordpro/source/filter/lwpsection.cxx
+++ b/lotuswordpro/source/filter/lwpsection.cxx
@@ -148,13 +148,13 @@ void LwpIndexSection::Read()
bool LwpIndexSection::IsFormatRunin()
{
- return (m_nFlags & RUN_IN);
+ return (m_nFlags & RUN_IN) != 0;
}
bool LwpIndexSection::IsFormatSeparator()
{
- return (m_nFlags & SEPARATORS);
+ return (m_nFlags & SEPARATORS) != 0;
}