Kaydet (Commit) ff8f4666 authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: Idf6e4cac974fec0a4f32c56f3dd76422a85a61fc
üst fd3c9e16
...@@ -30,7 +30,7 @@ class XMLTableShapeImportHelper : public XMLShapeImportHelper ...@@ -30,7 +30,7 @@ class XMLTableShapeImportHelper : public XMLShapeImportHelper
{ {
::com::sun::star::table::CellAddress aStartCell; ::com::sun::star::table::CellAddress aStartCell;
ScXMLAnnotationContext* pAnnotationContext; ScXMLAnnotationContext* pAnnotationContext;
sal_Bool bOnTable; bool bOnTable;
public: public:
...@@ -44,7 +44,7 @@ public: ...@@ -44,7 +44,7 @@ public:
void SetCell (const ::com::sun::star::table::CellAddress& rAddress) { aStartCell = rAddress; } 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; } void SetAnnotation(ScXMLAnnotationContext* pAnnotation) { pAnnotationContext = pAnnotation; }
ScXMLAnnotationContext* GetAnnotationContext() const { return pAnnotationContext; } ScXMLAnnotationContext* GetAnnotationContext() const { return pAnnotationContext; }
......
...@@ -55,7 +55,7 @@ SvXMLImportContext *ScXMLTableShapesContext::CreateChildContext( sal_uInt16 nPre ...@@ -55,7 +55,7 @@ SvXMLImportContext *ScXMLTableShapesContext::CreateChildContext( sal_uInt16 nPre
if (xShapes.is()) if (xShapes.is())
{ {
XMLTableShapeImportHelper* pTableShapeImport((XMLTableShapeImportHelper*)rXMLImport.GetShapeImport().get()); XMLTableShapeImportHelper* pTableShapeImport((XMLTableShapeImportHelper*)rXMLImport.GetShapeImport().get());
pTableShapeImport->SetOnTable(sal_True); pTableShapeImport->SetOnTable(true);
pContext = rXMLImport.GetShapeImport()->CreateGroupChildContext( pContext = rXMLImport.GetShapeImport()->CreateGroupChildContext(
rXMLImport, nPrefix, rLName, xAttrList, xShapes); rXMLImport, nPrefix, rLName, xAttrList, xShapes);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment