summaryrefslogtreecommitdiffstats
path: root/sc/source/core/data/dpobject.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-02-03 22:59:10 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-02-04 07:09:51 +0000
commit1bdef25291dea612305fa2cb8dd806466aa97773 (patch)
tree99dd556dd108792048619a86639ba2fa5b59438e /sc/source/core/data/dpobject.cxx
parentsc rowlimit: Make the cursor better fit the rendering. (diff)
downloadcore-1bdef25291dea612305fa2cb8dd806466aa97773.tar.gz
core-1bdef25291dea612305fa2cb8dd806466aa97773.zip
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/source/core/data/dpobject.cxx')
-rw-r--r--sc/source/core/data/dpobject.cxx6
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