summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
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;
}