diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-28 10:53:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-31 12:37:25 +0200 |
commit | c98a7eec7f24db4e3e7741a52463fca10156ecaf (patch) | |
tree | 4178645d542257d622b0ece8b15936cd88febbaf /sw | |
parent | ddb07081da099a392b1cdcbb8716afb6af43e006 (diff) |
xmloff: sal_Bool->bool
Change-Id: I1c97da5b7bbac348150399afbf386613433e5551
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/xml/xmlfmt.cxx | 5 | ||||
-rw-r--r-- | sw/source/filter/xml/xmltble.cxx | 4 | ||||
-rw-r--r-- | sw/source/filter/xml/xmltbli.cxx | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/sw/source/filter/xml/xmlfmt.cxx b/sw/source/filter/xml/xmlfmt.cxx index da2aab803750..cb7f02fcf3df 100644 --- a/sw/source/filter/xml/xmlfmt.cxx +++ b/sw/source/filter/xml/xmlfmt.cxx @@ -458,7 +458,8 @@ public: sal_uInt16 nFamily); virtual ~SwXMLItemSetStyleContext_Impl(); - virtual void CreateAndInsert( sal_Bool bOverwrite ) SAL_OVERRIDE; + virtual void CreateAndInsert( bool bOverwrite ) SAL_OVERRIDE; + virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, @@ -574,7 +575,7 @@ SwXMLItemSetStyleContext_Impl::~SwXMLItemSetStyleContext_Impl() delete pItemSet; } -void SwXMLItemSetStyleContext_Impl::CreateAndInsert( sal_Bool bOverwrite ) +void SwXMLItemSetStyleContext_Impl::CreateAndInsert( bool bOverwrite ) { if( pTextStyle ) pTextStyle->CreateAndInsert( bOverwrite ); diff --git a/sw/source/filter/xml/xmltble.cxx b/sw/source/filter/xml/xmltble.cxx index 0cdf40156588..cb110c5fe04d 100644 --- a/sw/source/filter/xml/xmltble.cxx +++ b/sw/source/filter/xml/xmltble.cxx @@ -807,7 +807,7 @@ void SwXMLExport::ExportTableBox( const SwTableBox& rBox, { OUString sQValue = GetNamespaceMap().GetQNameByKey( - XML_NAMESPACE_OOOW, sCellFormula, sal_False ); + XML_NAMESPACE_OOOW, sCellFormula, false ); // formula AddAttribute(XML_NAMESPACE_TABLE, XML_FORMULA, sQValue ); } @@ -834,7 +834,7 @@ void SwXMLExport::ExportTableBox( const SwTableBox& rBox, XMLNumberFormatAttributesExportHelper:: SetNumberFormatAttributes( *this, nNumberFormat, xCell->getValue(), - sal_True ); + true ); } // else: invalid key; ignore diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx index 289725d56fe7..122cf5059879 100644 --- a/sw/source/filter/xml/xmltbli.cxx +++ b/sw/source/filter/xml/xmltbli.cxx @@ -501,7 +501,7 @@ SwXMLTableCellContext_Impl::SwXMLTableCellContext_Impl( { OUString sTmp; sal_uInt16 nPrefix2 = GetImport().GetNamespaceMap(). - _GetKeyByAttrName( rValue, &sTmp, sal_False ); + _GetKeyByAttrName( rValue, &sTmp, false ); sFormula = XML_NAMESPACE_OOOW == nPrefix2 ? sTmp : rValue; } break; |