summaryrefslogtreecommitdiff
path: root/winaccessibility
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-12 14:38:49 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-12 18:29:05 +0200
commit1a97b9ab0489c742ffbfc8270e4bd153006b1273 (patch)
treed6042124a06a264ef0673d8c86220631f4280dff /winaccessibility
parent45d54cc6518d4ef408f7c7d5c55d6b7adfc9f12a (diff)
Fix typos
Change-Id: I38e23114a257d1baf2a9f36fd8ac0fcf8f3938b3 Reviewed-on: https://gerrit.libreoffice.org/77356 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'winaccessibility')
-rw-r--r--winaccessibility/source/UAccCOMIDL/ia2_api_all.idl10
-rw-r--r--winaccessibility/source/service/AccContainerEventListener.cxx2
2 files changed, 6 insertions, 6 deletions
diff --git a/winaccessibility/source/UAccCOMIDL/ia2_api_all.idl b/winaccessibility/source/UAccCOMIDL/ia2_api_all.idl
index f2de7495a638..97d207169549 100644
--- a/winaccessibility/source/UAccCOMIDL/ia2_api_all.idl
+++ b/winaccessibility/source/UAccCOMIDL/ia2_api_all.idl
@@ -1182,7 +1182,7 @@ IA2_STATE_VERTICAL = 0x20000,
state is not required. However, this state is necessary in those cases where
an object has a role which is not one of the previously mentioned roles. An
example is a table cell which indicates whether or not an email has an attachment,
- whether or not an mail is considered spam, and whether or not an email has been read.
+ whether or not a mail is considered spam, and whether or not an email has been read.
*/
IA2_STATE_CHECKABLE = 0x40000,
@@ -1502,7 +1502,7 @@ IA2_STATE_PINNED = 0x80000
Regarding switching between any of the IAccessible2 interfaces, applications implementing
IAccessible2 should implement the IAccessible2 interfaces on a single object since ATs
- will be using QueryInterface to switch between the IAccessilbe2 interfaces. Implementing
+ will be using QueryInterface to switch between the IAccessible2 interfaces. Implementing
the IAccessible2 interfaces on separate objects would require the use of QueryService.
There is one exception, IAccessibleApplication can be implemented on a separate object so
its common code doesn't have to be included in each accessible object. ATs should use
@@ -2655,7 +2655,7 @@ interface IAccessibleText : IUnknown
For example, if text type is ::IA2_TEXT_BOUNDARY_WORD, then the complete
word that is closest to and located before offset is returned.
- If the index is valid, but no text is found, S_FALSE is returned along with out
+ If the index is valid, but no text is found, S_FALSE is returned along without
values of 0, 0, and a NULL pointer. This would happen for boundary types other
than character when the text consists entirely of whitespace.
@@ -2700,7 +2700,7 @@ interface IAccessibleText : IUnknown
For example, if text type is ::IA2_TEXT_BOUNDARY_WORD, then the complete
word that is closest to and located after offset is returned.
- If the index is valid, but no text is found, S_FALSE is returned along with out
+ If the index is valid, but no text is found, S_FALSE is returned along without
values of 0, 0, and a NULL pointer. This would happen for boundary types other
than character when the text consists entirely of whitespace.
@@ -2746,7 +2746,7 @@ interface IAccessibleText : IUnknown
last characters of a word are considered inside the word. Boundary types of
sentence and paragraph should exhibit similar behavior.
- If the index is valid, but no text is found, S_FALSE is returned along with out
+ If the index is valid, but no text is found, S_FALSE is returned along without
values of 0, 0, and a NULL pointer. This would happen for boundary types other
than character when the text consists entirely of whitespace.
diff --git a/winaccessibility/source/service/AccContainerEventListener.cxx b/winaccessibility/source/service/AccContainerEventListener.cxx
index c2af19c9b696..8ae4653beb88 100644
--- a/winaccessibility/source/service/AccContainerEventListener.cxx
+++ b/winaccessibility/source/service/AccContainerEventListener.cxx
@@ -140,7 +140,7 @@ void AccContainerEventListener::HandleChildChangedEvent(Any oldValue, Any newVal
}
else if (oldValue >>= xChild)
{
- //delete a existing child
+ //delete an existing child
if(xChild.is())
{
XAccessible* pAcc = xChild.get();