diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-24 11:31:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-25 14:32:55 +0200 |
commit | bdd2df77234e1df3d9795f45239d2f442e90670c (patch) | |
tree | 479db3d4e096bd5c80b10961cd4e3da76b24c16a /dbaccess | |
parent | b4d4ede795cbdbb813197fcfaac43e80af4ea566 (diff) |
svtools/svparser.hxx: sal_Bool->bool
Change-Id: I130c40227a756b396c4f858468457867d53454b1
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/misc/HtmlReader.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/misc/HtmlReader.cxx b/dbaccess/source/ui/misc/HtmlReader.cxx index 1767f1d1b096..764d797f5c54 100644 --- a/dbaccess/source/ui/misc/HtmlReader.cxx +++ b/dbaccess/source/ui/misc/HtmlReader.cxx @@ -84,7 +84,7 @@ OHTMLReader::OHTMLReader(SvStream& rIn,const SharedConnection& _rxConnection, SAL_INFO("dbaccess.ui", "OHTMLReader::OHTMLReader" ); SetSrcEncoding( GetExtendedCompatibilityTextEncoding( RTL_TEXTENCODING_ISO_8859_1 ) ); // If the file starts with a BOM, switch to UCS2. - SetSwitchToUCS2( sal_True ); + SetSwitchToUCS2( true ); } OHTMLReader::OHTMLReader(SvStream& rIn, @@ -106,7 +106,7 @@ OHTMLReader::OHTMLReader(SvStream& rIn, SAL_INFO("dbaccess.ui", "OHTMLReader::OHTMLReader" ); SetSrcEncoding( GetExtendedCompatibilityTextEncoding( RTL_TEXTENCODING_ISO_8859_1 ) ); // If the file starts with a BOM, switch to UCS2. - SetSwitchToUCS2( sal_True ); + SetSwitchToUCS2( true ); } OHTMLReader::~OHTMLReader() |