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

sal_Bool->bool

Change-Id: Ife994f88e0536a6bdd414deacc2c1e0315ad312f
üst e3509a73
...@@ -110,9 +110,9 @@ class ScChartPositioner // only parameter struct ...@@ -110,9 +110,9 @@ class ScChartPositioner // only parameter struct
ScChartGlue eGlue; ScChartGlue eGlue;
SCCOL nStartCol; SCCOL nStartCol;
SCROW nStartRow; SCROW nStartRow;
sal_Bool bColHeaders; bool bColHeaders;
sal_Bool bRowHeaders; bool bRowHeaders;
sal_Bool bDummyUpperLeft; bool bDummyUpperLeft;
private: private:
void CheckColRowHeaders(); void CheckColRowHeaders();
...@@ -133,10 +133,10 @@ public: ...@@ -133,10 +133,10 @@ public:
void SetRangeList( const ScRangeListRef& rNew ) { aRangeListRef = rNew; } void SetRangeList( const ScRangeListRef& rNew ) { aRangeListRef = rNew; }
void SetRangeList( const ScRange& rNew ); void SetRangeList( const ScRange& rNew );
void SetHeaders(sal_Bool bCol, sal_Bool bRow) { bColHeaders=bCol; bRowHeaders=bRow; } void SetHeaders(bool bCol, bool bRow) { bColHeaders=bCol; bRowHeaders=bRow; }
sal_Bool HasColHeaders() const { return bColHeaders; } bool HasColHeaders() const { return bColHeaders; }
sal_Bool HasRowHeaders() const { return bRowHeaders; } bool HasRowHeaders() const { return bRowHeaders; }
void SetDummyUpperLeft(sal_Bool bNew) { bDummyUpperLeft = bNew; } void SetDummyUpperLeft(bool bNew) { bDummyUpperLeft = bNew; }
void SeteGlue(ScChartGlue eNew) { eGlue = eNew; } void SeteGlue(ScChartGlue eNew) { eGlue = eNew; }
void SetStartCol(SCCOL nNew) { nStartCol = nNew; } void SetStartCol(SCCOL nNew) { nStartCol = nNew; }
void SetStartRow(SCROW nNew) { nStartRow = nNew; } void SetStartRow(SCROW nNew) { nStartRow = nNew; }
......
...@@ -263,7 +263,7 @@ void ScChartPositioner::GlueState() ...@@ -263,7 +263,7 @@ void ScChartPositioner::GlueState()
else else
eGlue = SC_CHARTGLUE_COLS; eGlue = SC_CHARTGLUE_COLS;
if ( *pA != nOccu ) if ( *pA != nOccu )
bDummyUpperLeft = sal_True; bDummyUpperLeft = true;
} }
else else
{ {
......
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