diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-22 14:25:43 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-23 11:11:51 +0200 |
commit | e32da7783686f088fa83cdae209bcf1c81d82f1e (patch) | |
tree | e1ee63bcb91bcbce5bcfa27c9244407377a57f11 /oox/source/drawingml/textparagraphproperties.cxx | |
parent | 2692047aacef7b4288f995ce6ff2db5e16b71014 (diff) |
oox: sal_Bool->bool
Change-Id: Icddec34e91305cfc3f9d852472bb86eab4d8cb26
Diffstat (limited to 'oox/source/drawingml/textparagraphproperties.cxx')
-rw-r--r-- | oox/source/drawingml/textparagraphproperties.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/textparagraphproperties.cxx b/oox/source/drawingml/textparagraphproperties.cxx index 858a488dedd0..76e162218240 100644 --- a/oox/source/drawingml/textparagraphproperties.cxx +++ b/oox/source/drawingml/textparagraphproperties.cxx @@ -296,7 +296,7 @@ void BulletList::pushToPropMap( const ::oox::core::XmlFilterBase* pFilterBase, P OUString aBulletFontName; sal_Int16 nBulletFontPitch = 0; sal_Int16 nBulletFontFamily = 0; - sal_Bool bSymbolFont = sal_False; + bool bSymbolFont = false; if( pFilterBase) { if (maBulletFont.getFontData( aBulletFontName, nBulletFontPitch, nBulletFontFamily, *pFilterBase ) ) { @@ -319,7 +319,7 @@ void BulletList::pushToPropMap( const ::oox::core::XmlFilterBase* pFilterBase, P aBulletFontName.equalsIgnoreAsciiCase("StarMath") || aBulletFontName.equalsIgnoreAsciiCase("ZapfDingbats") ) { aFontDesc.CharSet = RTL_TEXTENCODING_SYMBOL; - bSymbolFont = sal_True; + bSymbolFont = true; } rPropMap.setProperty( PROP_BulletFont, aFontDesc); rPropMap.setProperty( PROP_BulletFontName, aBulletFontName); |