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
{
::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; }
......
......@@ -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);
}
......
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