Kaydet (Commit) 439c9091 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

warning C4800: 'int' : forcing value to bool 'true' or 'false'

Change-Id: I011954c2e12abb8a7551638567474e2123d3221e
üst 6d51e258
......@@ -275,7 +275,7 @@ public:
sal_uInt8 getTct() const { return tct; }
sal_uInt16 getTcID() const { return tcid; }
bool isVisible() { return !( bFlagsTCR & 0x1 ); }
bool isBeginGroup() { return ( bFlagsTCR & 0x2 ); }
bool isBeginGroup() { return ( bFlagsTCR & 0x2 ) != 0; }
bool Read(SvStream &rS) SAL_OVERRIDE;
#if OSL_DEBUG_LEVEL > 1
virtual void Print( FILE* ) SAL_OVERRIDE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment