diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-03-22 22:44:38 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-23 06:13:13 +0000 |
commit | 9f5b1c4f2afb5844007f1bd24761acd72908cb4f (patch) | |
tree | ab416a69216a7ae92b239ac94e5e62f2c256493d /sc | |
parent | cba153ca03ce201948e7d18438abd6f33054ad5e (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')
-rw-r--r-- | sc/inc/document.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/documen2.cxx | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx index fc1db73c7147..8310e973dfc3 100644 --- a/sc/inc/document.hxx +++ b/sc/inc/document.hxx @@ -484,7 +484,7 @@ private: bool mbFinalTrackFormulas : 1; public: - bool IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBoder); + bool IsCellInChangeTrack(const ScAddress &cell,Color *pColCellBorder); void GetCellChangeTrackNote(const ScAddress &cell, OUString &strTrackText, bool &pbLeftEdge); bool IsUsingEmbededFonts() { return mbUseEmbedFonts; } void SetIsUsingEmbededFonts( bool bUse ) { mbUseEmbedFonts = bUse; } 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; } |