diff options
Diffstat (limited to 'vcl/osx/a11yvaluewrapper.mm')
-rw-r--r-- | vcl/osx/a11yvaluewrapper.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/a11yvaluewrapper.mm b/vcl/osx/a11yvaluewrapper.mm index ef6cf6e7a400..4882cd2eff97 100644 --- a/vcl/osx/a11yvaluewrapper.mm +++ b/vcl/osx/a11yvaluewrapper.mm @@ -73,11 +73,11 @@ using namespace ::com::sun::star::uno; } +(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper { - BOOL isSettable = NO; + bool isSettable = false; if ( [ wrapper accessibleValue ] && [ attribute isEqualToString: NSAccessibilityValueAttribute ] && ! [ wrapper isKindOfClass: [ AquaA11yWrapperStaticText class ] ] ) { - isSettable = YES; + isSettable = true; } return isSettable; } |