diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-22 17:15:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-22 17:15:11 +0100 |
commit | 77637324abc193d831bb4a0fa6f9a91ef3601960 (patch) | |
tree | 8ed17a65aeb52c9c6c1d054831b9e323b061085b | |
parent | e6e3ce2c9558d3d5aedec5388011ba408ed555fc (diff) |
warning C4805: '|=' : unsafe mix of type 'bool' and type 'sal_Bool'
Change-Id: I9a23865f7b1cf9d88f5b4f754b15e95554da3fda
-rw-r--r-- | xmloff/source/style/xmlimppr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/style/xmlimppr.cxx b/xmloff/source/style/xmlimppr.cxx index 4ffac034a686..7173fb0847ed 100644 --- a/xmloff/source/style/xmlimppr.cxx +++ b/xmloff/source/style/xmlimppr.cxx @@ -188,7 +188,7 @@ void SvXMLImportPropertyMapper::importXML( nReference = -1; } - sal_Bool bSet = sal_False; + bool bSet = false; if( ( nFlags & MID_FLAG_SPECIAL_ITEM_IMPORT ) == 0 ) { // let the XMLPropertySetMapper decide how to import the value |