sc/inc/chartpos.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 03f225039b366f075b23a074e63edc6a47b12d3c Author: Luboš Luňák <l.lu...@collabora.com> AuthorDate: Mon Feb 7 18:07:45 2022 +0100 Commit: Luboš Luňák <l.lu...@collabora.com> CommitDate: Tue Feb 8 12:26:42 2022 +0100 if these are row/column numbers, then no need to use sal_uLong Change-Id: I7c9dd795961f8756fe932df910a3fe6272b3211f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129631 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lu...@collabora.com> diff --git a/sc/inc/chartpos.hxx b/sc/inc/chartpos.hxx index 538fc12a6ef9..efc1a94e7c6d 100644 --- a/sc/inc/chartpos.hxx +++ b/sc/inc/chartpos.hxx @@ -25,9 +25,9 @@ #include <map> // map of row number to ScAddress* -typedef std::map<sal_uLong, std::unique_ptr<ScAddress>> RowMap; +typedef std::map<SCROW, std::unique_ptr<ScAddress>> RowMap; // map of column number to RowMap -typedef std::map<sal_uLong, RowMap> ColumnMap; +typedef std::map<SCCOL, RowMap> ColumnMap; class ScChartPositionMap {