diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-29 10:58:21 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-29 11:00:31 +0000 |
commit | 06957447394682b35d5c861f8b81956ccf65508a (patch) | |
tree | a7b426753dd5bfad449b4be63401f4005defe4d4 /svx | |
parent | a5ea9ddaad65853d1e14686ddb096da2e62731e0 (diff) |
WaE: C4805: '!=' : unsafe mix of type 'bool' and type 'const sal_Bool'
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdoashp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdoashp.cxx b/svx/source/svdraw/svdoashp.cxx index 2cd4a042a2a5..0c51f654bd6d 100644 --- a/svx/source/svdraw/svdoashp.cxx +++ b/svx/source/svdraw/svdoashp.cxx @@ -1369,7 +1369,7 @@ void SdrObjCustomShape::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const // set path and poly conversion if one is possible since // this object will first be broken - const sal_Bool bCanConvToPathOrPoly(aInfo.bCanConvToPath || aInfo.bCanConvToPoly); + const bool bCanConvToPathOrPoly(aInfo.bCanConvToPath || aInfo.bCanConvToPoly); if(rInfo.bCanConvToPath != bCanConvToPathOrPoly) { rInfo.bCanConvToPath = bCanConvToPathOrPoly; |