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

sal_Bool->bool

Change-Id: I6f567871d9ba0517c5069f9b2d6c908b4501178d
üst 1d7f9ceb
......@@ -58,7 +58,7 @@ public:
SCCOL GetColCount() const { return nColCount; }
SCROW GetRowCount() const { return nRowCount; }
sal_Bool IsValid( SCCOL nCol, SCROW nRow ) const
bool IsValid( SCCOL nCol, SCROW nRow ) const
{ return nCol < nColCount && nRow < nRowCount; }
// data column by column
sal_uLong GetIndex( SCCOL nCol, SCROW nRow ) const
......@@ -140,7 +140,7 @@ public:
void SetStartCol(SCCOL nNew) { nStartCol = nNew; }
void SetStartRow(SCROW nNew) { nStartRow = nNew; }
sal_Bool operator==(const ScChartPositioner& rCmp) const;
bool operator==(const ScChartPositioner& rCmp) const;
void InvalidateGlue()
{
......
......@@ -86,7 +86,7 @@ ScChartPositioner::~ScChartPositioner()
delete pPositionMap;
}
sal_Bool ScChartPositioner::operator==(const ScChartPositioner& rCmp) const
bool ScChartPositioner::operator==(const ScChartPositioner& rCmp) const
{
return bColHeaders == rCmp.bColHeaders
&& bRowHeaders == rCmp.bRowHeaders
......
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