diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-02-03 22:59:10 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-02-04 07:09:51 +0000 |
commit | 1bdef25291dea612305fa2cb8dd806466aa97773 (patch) | |
tree | 99dd556dd108792048619a86639ba2fa5b59438e /sc | |
parent | 9ba5eb228d714d1e5454049cac987a673bfce1e1 (diff) |
Typo: FindIntersetingTableByColumns->FindIntersectingTableByColumns
Change-Id: I74456399bde6075c9b3813d6c0ffe98fe1afbe3a
Reviewed-on: https://gerrit.libreoffice.org/33905
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/dpobject.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/data/dpobject.cxx b/sc/source/core/data/dpobject.cxx index 26b41778db13..5126a56dc0a1 100644 --- a/sc/source/core/data/dpobject.cxx +++ b/sc/source/core/data/dpobject.cxx @@ -593,14 +593,14 @@ public: } }; -class FindIntersetingTableByColumns : public std::unary_function<std::unique_ptr<ScDPObject>, bool> +class FindIntersectingTableByColumns : public std::unary_function<std::unique_ptr<ScDPObject>, bool> { SCCOL mnCol1; SCCOL mnCol2; SCROW mnRow; SCTAB mnTab; public: - FindIntersetingTableByColumns(SCCOL nCol1, SCCOL nCol2, SCROW nRow, SCTAB nTab) : + FindIntersectingTableByColumns(SCCOL nCol1, SCCOL nCol2, SCROW nRow, SCTAB nTab) : mnCol1(nCol1), mnCol2(nCol2), mnRow(nRow), mnTab(nTab) {} bool operator() (const std::unique_ptr<ScDPObject>& rObj) const @@ -3848,7 +3848,7 @@ ScRangeList ScDPCollection::GetAllTableRanges( SCTAB nTab ) const bool ScDPCollection::IntersectsTableByColumns( SCCOL nCol1, SCCOL nCol2, SCROW nRow, SCTAB nTab ) const { - return std::any_of(maTables.begin(), maTables.end(), FindIntersetingTableByColumns(nCol1, nCol2, nRow, nTab)); + return std::any_of(maTables.begin(), maTables.end(), FindIntersectingTableByColumns(nCol1, nCol2, nRow, nTab)); } bool ScDPCollection::IntersectsTableByRows( SCCOL nCol, SCROW nRow1, SCROW nRow2, SCTAB nTab ) const |