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 /dbaccess | |
parent | 0e8ab0fa298ad5c801aa94fb3e3fd2daa93d634c (diff) |
xmloff: sal_Bool->bool
Change-Id: Id3d8f4f4ef32280a131907ffa32eb2ad5d6ea2e1
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/filter/xml/xmlStyleImport.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/filter/xml/xmlStyleImport.cxx b/dbaccess/source/filter/xml/xmlStyleImport.cxx index 4c5337a07508..21906d279c73 100644 --- a/dbaccess/source/filter/xml/xmlStyleImport.cxx +++ b/dbaccess/source/filter/xml/xmlStyleImport.cxx @@ -85,13 +85,13 @@ void OTableStyleContext::FillPropertySet( if ((m_nNumberFormat == -1) && !m_sDataStyleName.isEmpty()) { SvXMLNumFormatContext* pStyle = PTR_CAST(SvXMLNumFormatContext,pStyles->FindStyleChildContext( - XML_STYLE_FAMILY_DATA_STYLE, m_sDataStyleName, sal_True)); + XML_STYLE_FAMILY_DATA_STYLE, m_sDataStyleName, true)); if ( !pStyle ) { OTableStylesContext* pMyStyles = PTR_CAST(OTableStylesContext,GetOwnImport().GetAutoStyles()); if ( pMyStyles ) pStyle = PTR_CAST(SvXMLNumFormatContext,pMyStyles-> - FindStyleChildContext(XML_STYLE_FAMILY_DATA_STYLE, m_sDataStyleName, sal_True)); + FindStyleChildContext(XML_STYLE_FAMILY_DATA_STYLE, m_sDataStyleName, true)); else { OSL_FAIL("not possible to get style"); } @@ -167,7 +167,7 @@ void OTableStylesContext::EndElement() if (bAutoStyles) GetImport().GetTextImport()->SetAutoStyles( this ); else - GetImport().GetStyles()->CopyStylesToDoc(sal_True); + GetImport().GetStyles()->CopyStylesToDoc(true); } UniReference < SvXMLImportPropertyMapper > |