diff options
-rw-r--r-- | sc/inc/cell.hxx | 2 | ||||
-rw-r--r-- | sc/inc/column.hxx | 2 | ||||
-rw-r--r-- | sc/inc/table.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/cell2.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/column.cxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/cell.hxx b/sc/inc/cell.hxx index 904aa3189acb..297d9015d6d3 100644 --- a/sc/inc/cell.hxx +++ b/sc/inc/cell.hxx @@ -459,7 +459,7 @@ public: void UpdateRenameTab(SCTAB nTable, const String& rName); BOOL TestTabRefAbs(SCTAB nTable); void UpdateCompile( BOOL bForceIfNameInUse = FALSE ); - BOOL IsRangeNameInUse(size_t nIndex) const; + BOOL IsRangeNameInUse(USHORT nIndex) const; void FindRangeNamesInUse(std::set<USHORT>& rIndexes) const; void ReplaceRangeNamesInUse( const ScRangeData::IndexMap& rMap ); BOOL IsSubTotal() const { return bSubTotal; } diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index 3c2da566e552..e4febf65179d 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -299,7 +299,7 @@ public: void UpdateGrow( const ScRange& rArea, SCCOL nGrowX, SCROW nGrowY ); void SetTabNo(SCTAB nNewTab); - bool IsRangeNameInUse(SCROW nRow1, SCROW nRow2, size_t nIndex) const; + bool IsRangeNameInUse(SCROW nRow1, SCROW nRow2, sal_uInt16 nIndex) const; void FindRangeNamesInUse(SCROW nRow1, SCROW nRow2, std::set<sal_uInt16>& rIndexes) const; void ReplaceRangeNamesInUse( SCROW nRow1, SCROW nRow2, const ScRangeData::IndexMap& rMap ); diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index d58944950be2..3b799a7301b5 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -479,7 +479,7 @@ public: void UpdateCompile( BOOL bForceIfNameInUse = FALSE ); void SetTabNo(SCTAB nNewTab); BOOL IsRangeNameInUse(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, - size_t nIndex) const; + USHORT nIndex) const; void FindRangeNamesInUse(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, std::set<USHORT>& rIndexes) const; void ReplaceRangeNamesInUse(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, diff --git a/sc/source/core/data/cell2.cxx b/sc/source/core/data/cell2.cxx index 304632310cdb..07523d649546 100644 --- a/sc/source/core/data/cell2.cxx +++ b/sc/source/core/data/cell2.cxx @@ -1529,7 +1529,7 @@ BOOL lcl_IsRangeNameInUse(size_t nIndex, ScTokenArray* pCode, ScRangeName* pName return FALSE; } -BOOL ScFormulaCell::IsRangeNameInUse(size_t nIndex) const +BOOL ScFormulaCell::IsRangeNameInUse(USHORT nIndex) const { return lcl_IsRangeNameInUse( nIndex, pCode, pDocument->GetRangeName() ); } diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index 286ed8fc2f9b..de0e8ed5cb22 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -1841,7 +1841,7 @@ void ScColumn::SetTabNo(SCTAB nNewTab) } -bool ScColumn::IsRangeNameInUse(SCROW nRow1, SCROW nRow2, size_t nIndex) const +bool ScColumn::IsRangeNameInUse(SCROW nRow1, SCROW nRow2, sal_uInt16 nIndex) const { bool bInUse = false; if (pItems) |