summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-03-22 22:44:38 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-03-23 06:13:13 +0000
commit9f5b1c4f2afb5844007f1bd24761acd72908cb4f (patch)
treeab416a69216a7ae92b239ac94e5e62f2c256493d /sc/source
parentcba153ca03ce201948e7d18438abd6f33054ad5e (diff)
Typo: boder->border
Change-Id: I46940c5b584f93b478b1dfca9aa66e036fe951c2 Reviewed-on: https://gerrit.libreoffice.org/35547 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/core/data/documen2.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx
index ca777799cb95..d9149ff1788f 100644
--- a/sc/source/core/data/documen2.cxx
+++ b/sc/source/core/data/documen2.cxx
@@ -1277,7 +1277,7 @@ void ScDocument::ClearLookupCaches()
pLookupCacheMapImpl->clear();
}
-bool ScDocument::IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBoder)
+bool ScDocument::IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBorder)
{
ScChangeTrack* pTrack = GetChangeTrack();
ScChangeViewSettings* pSettings = GetChangeViewSettings();
@@ -1305,11 +1305,11 @@ bool ScDocument::IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBoder)
{
if (aRange.In(cell))
{
- if (pColCellBoder != nullptr)
+ if (pColCellBorder != nullptr)
{
aColorChanger.Update( *pAction );
Color aColor( aColorChanger.GetColor() );
- *pColCellBoder = aColor;
+ *pColCellBorder = aColor;
}
return true;
}
@@ -1325,11 +1325,11 @@ bool ScDocument::IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBoder)
{
if (aRange.In(cell))
{
- if (pColCellBoder != nullptr)
+ if (pColCellBorder != nullptr)
{
aColorChanger.Update( *pAction );
Color aColor( aColorChanger.GetColor() );
- *pColCellBoder = aColor;
+ *pColCellBorder = aColor;
}
return true;
}