summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlfldw.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-11-17 06:44:00 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-11-17 07:22:43 +0900
commit5c6bbe6a23b6b746dcbb20de1360b4745b1e4679 (patch)
tree6ee815098d4e6340ec2bd7ddba3f8ee68c48102e /sw/source/filter/html/htmlfldw.cxx
parentc7bedbf124b4c903249ea78ba1f819e1e58d38f7 (diff)
sal_Bool to bool
Change-Id: I0b01f904f78ec1a3d1aebd2af2ae8f55588a504f
Diffstat (limited to 'sw/source/filter/html/htmlfldw.cxx')
-rw-r--r--sw/source/filter/html/htmlfldw.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/html/htmlfldw.cxx b/sw/source/filter/html/htmlfldw.cxx
index 3554732943f2..4009363370d1 100644
--- a/sw/source/filter/html/htmlfldw.cxx
+++ b/sw/source/filter/html/htmlfldw.cxx
@@ -462,7 +462,7 @@ Writer& OutHTML_SwFmtFld( Writer& rWrt, const SfxPoolItem& rHt )
// Kommentare werden im ANSI-Zeichensetz, aber mit System-Zeilen-
// Umbruechen gesschrieben.
const OUString& rComment = pFld->GetPar2();
- sal_Bool bWritten = sal_False;
+ bool bWritten = false;
if( (rComment.getLength() >= 6 && rComment.startsWith("<") && rComment.endsWith(">") &&
rComment.copy( 1, 4 ).equalsIgnoreAsciiCase( OOO_STRING_SVTOOLS_HTML_meta) ) ||
@@ -477,7 +477,7 @@ Writer& OutHTML_SwFmtFld( Writer& rWrt, const SfxPoolItem& rHt )
OString sTmp(OUStringToOString(sComment,
((SwHTMLWriter&)rWrt).eDestEnc));
rWrt.Strm() << sTmp.getStr();
- bWritten = sal_True;
+ bWritten = true;
}
else if( rComment.getLength() >= 7 &&
rComment.endsWith(">") &&
@@ -493,7 +493,7 @@ Writer& OutHTML_SwFmtFld( Writer& rWrt, const SfxPoolItem& rHt )
OString sTmp(OUStringToOString(sComment,
((SwHTMLWriter&)rWrt).eDestEnc));
rWrt.Strm() << sTmp.getStr();
- bWritten = sal_True;
+ bWritten = true;
}
}