From 9f5b1c4f2afb5844007f1bd24761acd72908cb4f Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Wed, 22 Mar 2017 22:44:38 +0100 Subject: Typo: boder->border Change-Id: I46940c5b584f93b478b1dfca9aa66e036fe951c2 Reviewed-on: https://gerrit.libreoffice.org/35547 Tested-by: Jenkins Reviewed-by: Julien Nabet --- sc/source/core/data/documen2.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sc/source') 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; } -- cgit