diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-09-02 06:16:28 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-09-27 12:14:06 +0200 |
commit | d71859ed79eef8d0d76ea93530fe708b0effdc80 (patch) | |
tree | 58cdbd13e8b777a7afec9a2dd363e1e6ae3304e2 /sd | |
parent | 1534025a0386584a7b8f3f929b10ce5eb33257cf (diff) |
Fix typos
Change-Id: Icfe120db02a70d43e4120d1f4cbb2704640d3990
Reviewed-on: https://gerrit.libreoffice.org/59470
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/func/fudraw.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/viewshe3.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/view/viewshel.cxx | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/func/fudraw.cxx b/sd/source/ui/func/fudraw.cxx index 76d3edf027a3..0f4fb18cd173 100644 --- a/sd/source/ui/func/fudraw.cxx +++ b/sd/source/ui/func/fudraw.cxx @@ -520,7 +520,7 @@ void FuDraw::ForcePointer(const MouseEvent* pMEvt) { // The goal of this request is show always the rotation arrow for 3D-objects at rotation mode // Independent of the settings at Tools->Options->Draw "Objects always moveable" - // 2D-objects acquit in an other way. Otherwise, the rotation of 3d-objects around any axes + // 2D-objects acquit in another way. Otherwise, the rotation of 3d-objects around any axes // wouldn't be possible per default. const SdrMarkList& rMarkList = mpView->GetMarkedObjectList(); SdrObject* pObject = rMarkList.GetMark(0)->GetMarkedSdrObj(); diff --git a/sd/source/ui/view/viewshe3.cxx b/sd/source/ui/view/viewshe3.cxx index 53b3d3ce4052..73edd5dc7bc8 100644 --- a/sd/source/ui/view/viewshe3.cxx +++ b/sd/source/ui/view/viewshe3.cxx @@ -129,7 +129,7 @@ void ViewShell::GetMenuState( SfxItemSet &rSet ) { if(pUndoManager->GetUndoActionCount() != 0) { - // If an other view created the first undo action, prevent redoing it from this view. + // If another view created the first undo action, prevent redoing it from this view. const SfxUndoAction* pAction = pUndoManager->GetUndoAction(); if (pAction->GetViewShellId() != GetViewShellBase().GetViewShellId()) { @@ -158,7 +158,7 @@ void ViewShell::GetMenuState( SfxItemSet &rSet ) { if(pUndoManager->GetRedoActionCount() != 0) { - // If an other view created the first undo action, prevent redoing it from this view. + // If another view created the first undo action, prevent redoing it from this view. const SfxUndoAction* pAction = pUndoManager->GetRedoAction(); if (pAction->GetViewShellId() != GetViewShellBase().GetViewShellId()) { diff --git a/sd/source/ui/view/viewshel.cxx b/sd/source/ui/view/viewshel.cxx index ddcd4dc0b344..5e57c1e3f3f7 100644 --- a/sd/source/ui/view/viewshel.cxx +++ b/sd/source/ui/view/viewshel.cxx @@ -1257,7 +1257,7 @@ void ViewShell::ImpSidUndo(SfxRequest& rReq) { if (comphelper::LibreOfficeKit::isActive() && !bRepair) { - // If an other view created the first undo action, prevent redoing it from this view. + // If another view created the first undo action, prevent redoing it from this view. const SfxUndoAction* pAction = pUndoManager->GetUndoAction(); if (pAction->GetViewShellId() != GetViewShellBase().GetViewShellId()) { @@ -1325,7 +1325,7 @@ void ViewShell::ImpSidRedo(SfxRequest& rReq) { if (comphelper::LibreOfficeKit::isActive() && !bRepair) { - // If an other view created the first undo action, prevent redoing it from this view. + // If another view created the first undo action, prevent redoing it from this view. const SfxUndoAction* pAction = pUndoManager->GetRedoAction(); if (pAction->GetViewShellId() != GetViewShellBase().GetViewShellId()) { |