summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwptblcell.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwptblcell.hxx')
-rw-r--r--lotuswordpro/source/filter/lwptblcell.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwptblcell.hxx b/lotuswordpro/source/filter/lwptblcell.hxx
index ed66cf744858..2a2273cb153d 100644
--- a/lotuswordpro/source/filter/lwptblcell.hxx
+++ b/lotuswordpro/source/filter/lwptblcell.hxx
@@ -290,19 +290,19 @@ LwpRowColumnQualifier::LwpRowColumnQualifier()
inline bool
LwpRowColumnQualifier::IsAfter()
{
- return cFlags & REF_AFTER ? true : false;
+ return (cFlags & REF_AFTER) != 0;
}
inline bool
LwpRowColumnQualifier::IsBad()
{
- return cFlags & REF_BAD ? true : false;
+ return (cFlags & REF_BAD) != 0;
}
inline bool
LwpRowColumnQualifier::IsAbsolute()
{
- return cFlags & REF_ABSOLUTE ? true : false;
+ return (cFlags & REF_ABSOLUTE) != 0;
}
/**
* @brief