summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlbas.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-25 14:00:35 +0200
committerNoel Grandin <noel@peralex.com>2014-04-30 08:44:42 +0200
commit6aa35db39311dcd7965c9c9c21fcf4143a1f9b43 (patch)
tree04320eaf8c7481c1b496460624ee20ec11360ac2 /sw/source/filter/html/htmlbas.cxx
parent1417061d1b2c110e7e690523a544b58e7ffd05c0 (diff)
sw: sal_Bool->bool
Change-Id: I324a0ffde2ddcca105451c19e7aadcfad15211d8
Diffstat (limited to 'sw/source/filter/html/htmlbas.cxx')
-rw-r--r--sw/source/filter/html/htmlbas.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/filter/html/htmlbas.cxx b/sw/source/filter/html/htmlbas.cxx
index 83d63c39379f..051ade271925 100644
--- a/sw/source/filter/html/htmlbas.cxx
+++ b/sw/source/filter/html/htmlbas.cxx
@@ -69,16 +69,16 @@ void SwHTMLParser::NewScript()
void SwHTMLParser::EndScript()
{
- sal_Bool bInsIntoBasic = sal_False,
- bInsSrcIntoFld = sal_False;
+ bool bInsIntoBasic = false,
+ bInsSrcIntoFld = false;
switch( eScriptLang )
{
case HTML_SL_STARBASIC:
- bInsIntoBasic = sal_True;
+ bInsIntoBasic = true;
break;
default:
- bInsSrcIntoFld = sal_True;
+ bInsSrcIntoFld = true;
break;
}
@@ -136,7 +136,7 @@ void SwHTMLParser::EndScript()
if( aBasicModule.isEmpty() )
{
// create module name
- sal_Bool bFound = sal_True;
+ bool bFound = true;
while( bFound )
{
aBasicModule = "Modul";