Kaydet (Commit) 9fb829ab authored tarafından Stephan Bergmann's avatar Stephan Bergmann

warning C4805: != : unsafe mix of bool and sal_Bool

Change-Id: Ic1b8c2c179f80217fd7096203f2784d5873b6dc2
üst b1b8e14c
...@@ -905,7 +905,7 @@ void DocumentSettings::_setPropertyValues( const PropertyMapEntry** ppEntries, c ...@@ -905,7 +905,7 @@ void DocumentSettings::_setPropertyValues( const PropertyMapEntry** ppEntries, c
case HANDLE_EMBED_FONTS: case HANDLE_EMBED_FONTS:
{ {
sal_Bool bNewValue = sal_False; bool bNewValue = false;
if ( *pValues >>= bNewValue ) if ( *pValues >>= bNewValue )
{ {
bChanged = ( pDoc->IsUsingEmbededFonts() != bNewValue ); bChanged = ( pDoc->IsUsingEmbededFonts() != bNewValue );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment