summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-10-06 17:20:05 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-10-07 12:49:48 +0300
commit2d55a917a46f89ab0e82acc8bcca2f5a9dfce822 (patch)
treeebe66a8321d4410a4e68ab2f9c9789b729225169 /svx
parentf2b0bd07b37f40048a4b58a561a3c787eb6a885b (diff)
WaE: bool/sal_Bool mismatch
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdmodel.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index 5f898136c84d..07331e5f945b 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -1944,7 +1944,7 @@ void SdrModel::SetCharCompressType( sal_uInt16 nType )
void SdrModel::SetKernAsianPunctuation( sal_Bool bEnabled )
{
- if( mbKernAsianPunctuation != bEnabled )
+ if( mbKernAsianPunctuation != (bool) bEnabled )
{
mbKernAsianPunctuation = bEnabled;
ImpSetOutlinerDefaults( pDrawOutliner );
@@ -1954,7 +1954,7 @@ void SdrModel::SetKernAsianPunctuation( sal_Bool bEnabled )
void SdrModel::SetAddExtLeading( sal_Bool bEnabled )
{
- if( mbAddExtLeading != bEnabled )
+ if( mbAddExtLeading != (bool) bEnabled )
{
mbAddExtLeading = bEnabled;
ImpSetOutlinerDefaults( pDrawOutliner );