diff options
Diffstat (limited to 'vcl/osx/a11ywrapper.mm')
-rw-r--r-- | vcl/osx/a11ywrapper.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/a11ywrapper.mm b/vcl/osx/a11ywrapper.mm index 555835021650..4b4ac43c4943 100644 --- a/vcl/osx/a11ywrapper.mm +++ b/vcl/osx/a11ywrapper.mm @@ -115,7 +115,7 @@ static std::ostream &operator<<(std::ostream &s, NSObject *obj) { FIXME: Unfortunately this can increase memory consumption drastically until the non transient parent - is destroyed an finally all the transients are released. + is destroyed and finally all the transients are released. */ if ( ! rxAccessibleContext -> getAccessibleStateSet() -> contains ( AccessibleStateType::TRANSIENT ) ) #endif @@ -209,7 +209,7 @@ static std::ostream &operator<<(std::ostream &s, NSObject *obj) { /* Radiobutton grouping is done differently in NSAccessibility and the UNO-API. In UNO related radio buttons share an entry in their - RelationSet. In NSAccessibility the relationship is axpressed through the hierarchy. A AXRadioGroup contains two or more AXRadioButton + RelationSet. In NSAccessibility the relationship is expressed through the hierarchy. An AXRadioGroup contains two or more AXRadioButton objects. Since this group is not available in the UNO hierarchy, an extra wrapper is used for it. This wrapper shares almost all attributes with the first radio button of the group, except for the role, subrole, role description, parent and children attributes. So in this five methods there is a special treatment for radio buttons and groups. |