summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-02-26 15:00:05 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-02-26 15:00:05 +0100
commit9fb829abd39cfe789e80dc6fec53292396d07d30 (patch)
treeaba68422d26aa40040311ae8f5fdd9bfd54e1520
parentb1b8e14c4f0cd06d4a36614f04f2b1145a5ea006 (diff)
warning C4805: != : unsafe mix of bool and sal_Bool
Change-Id: Ic1b8c2c179f80217fd7096203f2784d5873b6dc2
-rw-r--r--sd/source/ui/unoidl/UnoDocumentSettings.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/unoidl/UnoDocumentSettings.cxx b/sd/source/ui/unoidl/UnoDocumentSettings.cxx
index 7c3ba8439b7d..e9d6f65d95c9 100644
--- a/sd/source/ui/unoidl/UnoDocumentSettings.cxx
+++ b/sd/source/ui/unoidl/UnoDocumentSettings.cxx
@@ -905,7 +905,7 @@ void DocumentSettings::_setPropertyValues( const PropertyMapEntry** ppEntries, c
case HANDLE_EMBED_FONTS:
{
- sal_Bool bNewValue = sal_False;
+ bool bNewValue = false;
if ( *pValues >>= bNewValue )
{
bChanged = ( pDoc->IsUsingEmbededFonts() != bNewValue );