diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-07-29 09:31:26 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-07-29 11:15:42 +0200 |
commit | c87cf4e76f0cf032a37078fe185adc9b1ca14e06 (patch) | |
tree | ef3c14358b9a2c5460e49b8ab7de43dd29a2f22b /winaccessibility | |
parent | a5dabf94fa32fb397141b7aee8e3daecb0240dc4 (diff) |
Fix typos
Change-Id: Iec31617554fae0f6c5a3d795a917ce9096d84405
Reviewed-on: https://gerrit.libreoffice.org/76521
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'winaccessibility')
5 files changed, 6 insertions, 6 deletions
diff --git a/winaccessibility/source/UAccCOM/MAccessible.cxx b/winaccessibility/source/UAccCOM/MAccessible.cxx index 7336eac3f2f9..8141df1ffcf0 100644 --- a/winaccessibility/source/UAccCOM/MAccessible.cxx +++ b/winaccessibility/source/UAccCOM/MAccessible.cxx @@ -1333,7 +1333,7 @@ STDMETHODIMP CMAccessible::Put_XAccAgent(hyper pAgent) * When a UNO control disposing, it disposes its listeners, * then notify AccObject in bridge management, then notify * COM that the XAccessible is invalid,so set m_xAccessible as NULL -* @param isDestroy, true is it need to be destroyed. +* @param isDestroy, true is it needs to be destroyed. * @return S_OK if successful and E_FAIL if failure. */ STDMETHODIMP CMAccessible::NotifyDestroy(BOOL isDestroy) diff --git a/winaccessibility/source/UAccCOM/MAccessible.h b/winaccessibility/source/UAccCOM/MAccessible.h index afd739a0bb6f..cdbe0e85905d 100644 --- a/winaccessibility/source/UAccCOM/MAccessible.h +++ b/winaccessibility/source/UAccCOM/MAccessible.h @@ -226,8 +226,8 @@ public: STDMETHOD(Get_XAccChildID)(/*[out,retval]*/ long* childID) override; // AccObjectManagerAgent is a management object in UNO, here keep its pointer for // the implementation of accNavigate when descendant manage happens for List,Tree, or Table - // AccObjectManagerAgent and the following UNO objects XAccessble,XAccessibleSelection, - // XAccessibleAction are all used to operate UNO accessiblility information directly when + // AccObjectManagerAgent and the following UNO objects XAccessible,XAccessibleSelection, + // XAccessibleAction are all used to operate UNO accessibility information directly when // implement some specific MSAA methods,such as accSelection,accNavigate static AccObjectManagerAgent* g_pAgent; diff --git a/winaccessibility/source/service/AccDialogEventListener.cxx b/winaccessibility/source/service/AccDialogEventListener.cxx index c67b7ed6bf74..1b9ce3cb7b5a 100644 --- a/winaccessibility/source/service/AccDialogEventListener.cxx +++ b/winaccessibility/source/service/AccDialogEventListener.cxx @@ -87,7 +87,7 @@ void AccDialogEventListener::HandleChildChangedEvent(Any oldValue, Any newValue) } else if (oldValue >>= xChild) { - //delete a existing child + //delete an existing child if(xChild.is()) { XAccessible* pAcc = xChild.get(); diff --git a/winaccessibility/source/service/AccFrameEventListener.cxx b/winaccessibility/source/service/AccFrameEventListener.cxx index 04a1a6366604..2d31bdffb551 100644 --- a/winaccessibility/source/service/AccFrameEventListener.cxx +++ b/winaccessibility/source/service/AccFrameEventListener.cxx @@ -100,7 +100,7 @@ void AccFrameEventListener::HandleChildChangedEvent(Any oldValue, Any newValue) } else if (oldValue >>= xChild) { - //delete a existing child + //delete an existing child if(xChild.is()) { XAccessible* pAcc = xChild.get(); diff --git a/winaccessibility/source/service/AccWindowEventListener.cxx b/winaccessibility/source/service/AccWindowEventListener.cxx index ff68da52fda8..c079cc6ed351 100644 --- a/winaccessibility/source/service/AccWindowEventListener.cxx +++ b/winaccessibility/source/service/AccWindowEventListener.cxx @@ -87,7 +87,7 @@ void AccWindowEventListener::HandleChildChangedEvent(Any oldValue, Any newValue) } else if (oldValue >>= xChild) { - //delete a existing child + //delete an existing child if(xChild.is()) { XAccessible* pAcc = xChild.get(); |