summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-09-03 14:14:39 +0300
committerTor Lillqvist <tml@iki.fi>2013-09-03 14:16:17 +0300
commit29875a8d05dd3200775b987f25ed6277a15104fa (patch)
tree5774560d668d50456285fa8dcc9f9ebb6aed2158
parent96eff63b878b53c92375e02910fcf12b8b9df923 (diff)
WaE: C4805: '!=' : unsafe mix of type 'bool' and type 'sal_Bool'
Change-Id: I18cefc69b963cb957645a4586079de0d448e90b3
-rw-r--r--svtools/source/control/ruler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx
index 5955d4633354..6aa2c6c7f60e 100644
--- a/svtools/source/control/ruler.cxx
+++ b/svtools/source/control/ruler.cxx
@@ -2890,7 +2890,7 @@ void Ruler::DrawTab( OutputDevice* pDevice, const Color &rFillColor, const Point
void Ruler::SetTextRTL(sal_Bool bRTL)
{
- if(mpData->bTextRTL != bRTL)
+ if(mpData->bTextRTL != (bool) bRTL)
{
mpData->bTextRTL = bRTL;
if ( IsReallyVisible() && IsUpdateMode() )