diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-20 14:38:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-24 08:12:10 +0200 |
commit | 7a679ee19c3a18d89277c28b12bf81911acfef85 (patch) | |
tree | 4a98a2beb9997a9c4ba66bc01a4f40b9d15f60b1 /svtools/source/svhtml | |
parent | 554e54429c586468778cea4a4571b80de7d28d8d (diff) |
svtools: sal_Bool->bool
Change-Id: I35c9c1514c67860e61b6e2457ab4548d04a4d159
Diffstat (limited to 'svtools/source/svhtml')
-rw-r--r-- | svtools/source/svhtml/htmlout.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svtools/source/svhtml/htmlout.cxx b/svtools/source/svhtml/htmlout.cxx index 4abe983ec3cc..c5e2a508b4e1 100644 --- a/svtools/source/svhtml/htmlout.cxx +++ b/svtools/source/svhtml/htmlout.cxx @@ -510,7 +510,7 @@ OString HTMLOutFuncs::ConvertStringToHTML( const OUString& rSrc, } SvStream& HTMLOutFuncs::Out_AsciiTag( SvStream& rStream, const sal_Char *pStr, - sal_Bool bOn, rtl_TextEncoding ) + bool bOn, rtl_TextEncoding ) { sal_Char sStt[3] = "</"; if( bOn ) @@ -597,7 +597,7 @@ SvStream& HTMLOutFuncs::Out_ImageMap( SvStream& rStream, const ImageMap& rIMap, const OUString& rName, const HTMLOutEvent *pEventTable, - sal_Bool bOutStarBasic, + bool bOutStarBasic, const sal_Char *pDelim, const sal_Char *pIndentArea, const sal_Char *pIndentMap, @@ -770,7 +770,7 @@ SvStream& HTMLOutFuncs::Out_ImageMap( SvStream& rStream, rStream.WriteCharPtr( pDelim ); if( pIndentMap ) rStream.WriteCharPtr( pIndentMap ); - Out_AsciiTag( rStream, OOO_STRING_SVTOOLS_HTML_map, sal_False ); + Out_AsciiTag( rStream, OOO_STRING_SVTOOLS_HTML_map, false ); return rStream; } @@ -883,7 +883,7 @@ SvStream& HTMLOutFuncs::OutScript( SvStream& rStrm, } } - HTMLOutFuncs::Out_AsciiTag( rStrm, OOO_STRING_SVTOOLS_HTML_script, sal_False ); + HTMLOutFuncs::Out_AsciiTag( rStrm, OOO_STRING_SVTOOLS_HTML_script, false ); return rStrm; } @@ -892,7 +892,7 @@ SvStream& HTMLOutFuncs::OutScript( SvStream& rStrm, SvStream& HTMLOutFuncs::Out_Events( SvStream& rStrm, const SvxMacroTableDtor& rMacroTable, const HTMLOutEvent *pEventTable, - sal_Bool bOutStarBasic, + bool bOutStarBasic, rtl_TextEncoding eDestEnc, OUString *pNonConvertableChars ) { @@ -925,7 +925,7 @@ SvStream& HTMLOutFuncs::Out_Events( SvStream& rStrm, } OString HTMLOutFuncs::CreateTableDataOptionsValNum( - sal_Bool bValue, + bool bValue, double fVal, sal_uLong nFormat, SvNumberFormatter& rFormatter, rtl_TextEncoding eDestEnc, OUString* pNonConvertableChars) { |