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