From 0f912872b661a6763dfd5789c0377ca453f7e260 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 31 Mar 2014 11:47:05 +0200 Subject: xmloff: sal_Bool->bool Change-Id: Id3d8f4f4ef32280a131907ffa32eb2ad5d6ea2e1 --- sc/source/filter/xml/xmlstyli.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc') 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( - 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(GetScImport().GetStyles()); if (pMyStyles) pStyle = static_cast( - 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 ); -- cgit