diff options
Diffstat (limited to 'sd/source/ui/accessibility')
3 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx b/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx index 0819cede035c..04087ea2811c 100644 --- a/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx +++ b/sd/source/ui/accessibility/AccessibleDrawDocumentView.cxx @@ -522,7 +522,7 @@ uno::Sequence< sal_Int32 > SAL_CALL uno::Reference< drawing::XShape > xShape = mpChildrenManager->GetChildShape(i); if ( xShape.is() ) { - //if the object is visable in the page, we add it into the group list. + //if the object is visible in the page, we add it into the group list. SdrObject* pObj = GetSdrObjectFromXShape(xShape); if ( pObj && pPV && pSdView && pSdView->IsObjMarkable( pObj, pPV ) ) { diff --git a/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx b/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx index 2a51ef286616..9bd85c0d95ef 100644 --- a/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx +++ b/sd/source/ui/accessibility/AccessibleSlideSorterView.cxx @@ -814,7 +814,7 @@ void AccessibleSlideSorterView::Implementation::RequestUpdateChildren (void) void AccessibleSlideSorterView::Implementation::UpdateChildren (void) { - //By default, all children should be accessable. So here workaround is to make all children visible. + //By default, all children should be accessible. So here workaround is to make all children visible. // MT: THis was in UpdateVisibility, which has some similarity, and hg merge automatically has put it here. Correct?! // In the IA2 CWS, also setting mnFirst/LastVisibleChild was commented out! mnLastVisibleChild = maPageObjects.size(); diff --git a/sd/source/ui/accessibility/AccessibleViewForwarder.cxx b/sd/source/ui/accessibility/AccessibleViewForwarder.cxx index b4a2815a5d9f..bdb4141281a8 100644 --- a/sd/source/ui/accessibility/AccessibleViewForwarder.cxx +++ b/sd/source/ui/accessibility/AccessibleViewForwarder.cxx @@ -27,7 +27,7 @@ namespace accessibility { /** For the time beeing, the implementation of this class will not use the member mrDevice. Instead the device is retrieved from the view - everytime it is used. This is necessary because the device has to stay + every time it is used. This is necessary because the device has to stay up-to-date with the current view and the class has to stay compatible. May change in the future. */ |