diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-09-17 23:22:55 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-09-17 23:37:22 +0900 |
commit | 2ef38f3739aff407f6cdfe4ea9c46591c18dd2f8 (patch) | |
tree | d74b2d9204c62331ea766c198d8c8365f2970ce8 /sw | |
parent | 8ecda4405a1160ade824bfde72d10513cacb9b1a (diff) |
sal_Bool to bool
Change-Id: I81767fda35b52e73bc78c07b660244a6808a0409
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/xml/xmlexp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/xml/xmlexp.cxx b/sw/source/filter/xml/xmlexp.cxx index 84ab0971bf98..d26eb60b8371 100644 --- a/sw/source/filter/xml/xmlexp.cxx +++ b/sw/source/filter/xml/xmlexp.cxx @@ -444,7 +444,7 @@ void SwXMLExport::SetBodyAttributes() if( pDoc->GetCurrentViewShell() && pDoc->GetCurrentViewShell()->GetPageCount() > 1 ) { - sal_Bool bValue = sal_True; + bool bValue = true; OUStringBuffer sBuffer; ::sax::Converter::convertBool(sBuffer, bValue); AddAttribute(XML_NAMESPACE_TEXT, XML_USE_SOFT_PAGE_BREAKS, |