Kaydet (Commit) 29875a8d authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: C4805: '!=' : unsafe mix of type 'bool' and type 'sal_Bool'

Change-Id: I18cefc69b963cb957645a4586079de0d448e90b3
üst 96eff63b
...@@ -2890,7 +2890,7 @@ void Ruler::DrawTab( OutputDevice* pDevice, const Color &rFillColor, const Point ...@@ -2890,7 +2890,7 @@ void Ruler::DrawTab( OutputDevice* pDevice, const Color &rFillColor, const Point
void Ruler::SetTextRTL(sal_Bool bRTL) void Ruler::SetTextRTL(sal_Bool bRTL)
{ {
if(mpData->bTextRTL != bRTL) if(mpData->bTextRTL != (bool) bRTL)
{ {
mpData->bTextRTL = bRTL; mpData->bTextRTL = bRTL;
if ( IsReallyVisible() && IsUpdateMode() ) if ( IsReallyVisible() && IsUpdateMode() )
......
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