diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-13 12:31:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-14 14:15:14 +0200 |
commit | ff8f4666f9324ab7f57a8c84a148360ef67d1ea9 (patch) | |
tree | 7559f60bca8cf56dfa620a7453939fced65a00c6 /sc | |
parent | fd3c9e16e1bf0db8cf8d549b864ae35f9ec3aa1e (diff) |
sal_Bool->bool
Change-Id: Idf6e4cac974fec0a4f32c56f3dd76422a85a61fc
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/XMLTableShapeImportHelper.hxx | 4 | ||||
-rw-r--r-- | sc/source/filter/xml/XMLTableShapesContext.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/xml/XMLTableShapeImportHelper.hxx b/sc/source/filter/xml/XMLTableShapeImportHelper.hxx index 900560026c63..a052d95a6763 100644 --- a/sc/source/filter/xml/XMLTableShapeImportHelper.hxx +++ b/sc/source/filter/xml/XMLTableShapeImportHelper.hxx @@ -30,7 +30,7 @@ class XMLTableShapeImportHelper : public XMLShapeImportHelper { ::com::sun::star::table::CellAddress aStartCell; ScXMLAnnotationContext* pAnnotationContext; - sal_Bool bOnTable; + bool bOnTable; public: @@ -44,7 +44,7 @@ public: void SetCell (const ::com::sun::star::table::CellAddress& rAddress) { aStartCell = rAddress; } - void SetOnTable (const sal_Bool bTempOnTable) { bOnTable = bTempOnTable; } + void SetOnTable (const bool bTempOnTable) { bOnTable = bTempOnTable; } void SetAnnotation(ScXMLAnnotationContext* pAnnotation) { pAnnotationContext = pAnnotation; } ScXMLAnnotationContext* GetAnnotationContext() const { return pAnnotationContext; } diff --git a/sc/source/filter/xml/XMLTableShapesContext.cxx b/sc/source/filter/xml/XMLTableShapesContext.cxx index 7cc5369196f4..aa5a9bd3f742 100644 --- a/sc/source/filter/xml/XMLTableShapesContext.cxx +++ b/sc/source/filter/xml/XMLTableShapesContext.cxx @@ -55,7 +55,7 @@ SvXMLImportContext *ScXMLTableShapesContext::CreateChildContext( sal_uInt16 nPre if (xShapes.is()) { XMLTableShapeImportHelper* pTableShapeImport((XMLTableShapeImportHelper*)rXMLImport.GetShapeImport().get()); - pTableShapeImport->SetOnTable(sal_True); + pTableShapeImport->SetOnTable(true); pContext = rXMLImport.GetShapeImport()->CreateGroupChildContext( rXMLImport, nPrefix, rLName, xAttrList, xShapes); } |