diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-31 11:47:05 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-31 12:39:03 +0200 |
commit | 0f912872b661a6763dfd5789c0377ca453f7e260 (patch) | |
tree | 7a21e618293c5873ab3370ba7ffe8e0cb78fb838 /sc | |
parent | 0e8ab0fa298ad5c801aa94fb3e3fd2daa93d634c (diff) |
xmloff: sal_Bool->bool
Change-Id: Id3d8f4f4ef32280a131907ffa32eb2ad5d6ea2e1
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/xmlstyli.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/xml/xmlstyli.cxx b/sc/source/filter/xml/xmlstyli.cxx index 56047632c540..acf043d0cb24 100644 --- a/sc/source/filter/xml/xmlstyli.cxx +++ b/sc/source/filter/xml/xmlstyli.cxx @@ -627,14 +627,14 @@ sal_Int32 XMLTableStyleContext::GetNumberFormat() if (nNumberFormat < 0 && !sDataStyleName.isEmpty()) { const SvXMLNumFormatContext* pStyle = static_cast<const SvXMLNumFormatContext*>( - pStyles->FindStyleChildContext(XML_STYLE_FAMILY_DATA_STYLE, sDataStyleName, sal_True)); + pStyles->FindStyleChildContext(XML_STYLE_FAMILY_DATA_STYLE, sDataStyleName, true)); if (!pStyle) { XMLTableStylesContext* pMyStyles = static_cast<XMLTableStylesContext*>(GetScImport().GetStyles()); if (pMyStyles) pStyle = static_cast<const SvXMLNumFormatContext*>( - pMyStyles->FindStyleChildContext(XML_STYLE_FAMILY_DATA_STYLE, sDataStyleName, sal_True)); + pMyStyles->FindStyleChildContext(XML_STYLE_FAMILY_DATA_STYLE, sDataStyleName, true)); else { OSL_FAIL("not possible to get style"); @@ -979,7 +979,7 @@ SvXMLStyleContext *ScXMLMasterStylesContext::CreateStyleStyleChildContext( void ScXMLMasterStylesContext::EndElement() { - FinishStyles(sal_True); + FinishStyles(true); } TYPEINIT1( ScMasterPageContext, XMLTextMasterPageContext ); |