From 9fb829abd39cfe789e80dc6fec53292396d07d30 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 26 Feb 2013 15:00:05 +0100 Subject: warning C4805: != : unsafe mix of bool and sal_Bool Change-Id: Ic1b8c2c179f80217fd7096203f2784d5873b6dc2 --- sd/source/ui/unoidl/UnoDocumentSettings.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sd/source/ui/unoidl') 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 ); -- cgit