summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-10-06 17:43:12 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-10-07 12:49:51 +0300
commit61a0a9e30014f707e30e872e011be5c6bde36a6f (patch)
tree223abde20f1d22af0d4e74f201d9847cf0d42e1a /svx
parent2d55a917a46f89ab0e82acc8bcca2f5a9dfce822 (diff)
WaE: signed/unsigned mismatch
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdpage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx
index dbd8a39f3031..77f739b01e66 100644
--- a/svx/source/svdraw/svdpage.cxx
+++ b/svx/source/svdraw/svdpage.cxx
@@ -1771,7 +1771,7 @@ XubString SdrPage::GetLayoutName() const
void SdrPage::SetInserted( bool bIns )
{
- if( mbInserted != bIns )
+ if( (bool) mbInserted != bIns )
{
mbInserted = bIns;