diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-12-19 00:00:46 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-12-19 07:19:35 +0100 |
commit | 8efd39be747c729a7f5b40cbca3e2a93585f9413 (patch) | |
tree | 7b5114af39a97964057c373d3ec2a2b6a706d5e2 /sc | |
parent | 9f3b61e51f7f9de11436b0e4eaec164f2656fbdd (diff) |
Fix typos
Change-Id: Ibffe19c1dfda9d0f4ba8d2a0761ad1222491007f
Reviewed-on: https://gerrit.libreoffice.org/46599
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/global.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/undo/undocell.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx index 5fa52755596b..0051dc6357a3 100644 --- a/sc/source/core/data/global.cxx +++ b/sc/source/core/data/global.cxx @@ -233,7 +233,7 @@ const SvxSearchItem& ScGlobal::GetSearchItem() void ScGlobal::SetSearchItem( const SvxSearchItem& rNew ) { - // FIXME: An assignement operator would be nice here + // FIXME: An assignment operator would be nice here delete pSearchItem; pSearchItem = static_cast<SvxSearchItem*>(rNew.Clone()); diff --git a/sc/source/ui/undo/undocell.cxx b/sc/source/ui/undo/undocell.cxx index becde96c8018..c93051a4aa49 100644 --- a/sc/source/ui/undo/undocell.cxx +++ b/sc/source/ui/undo/undocell.cxx @@ -270,7 +270,7 @@ void ScUndoEnterData::Redo() { ScAddress aPos = maPos; aPos.SetTab(nTab); - // edit text wil be cloned. + // edit text will be cloned. rDoc.SetEditText(aPos, *mpNewEditData, nullptr); } else |