summaryrefslogtreecommitdiff
path: root/vcl/osx
diff options
context:
space:
mode:
authorDouglas Mencken <dougmencken@gmail.com>2014-12-01 12:33:56 -0500
committerCaolán McNamara <caolanm@redhat.com>2014-12-02 20:26:01 +0000
commit0d0729ca97e67505a52dcb07d7819f6c444a0031 (patch)
tree27a1967f91ffa45ea2d55c61c618645352030658 /vcl/osx
parent13658762d2a6a0f33ad23ab6b9295ee93d2280bc (diff)
prefer `if (s)' to `if (nil != s)' for objective-c
in objc, explicit comparison with nil isn't necessary and can produce errors like: comparison between distinct pointer types (...) and 'objc_object*' lacks a cast upd: thanks Norbert Thiebaud for suggestion ``hitChild is a Reference so hitChild = nil was !hitChild.is() right?'' Change-Id: I105be50e5a37bb63e360622e590ec4916fa8a84f Reviewed-on: https://gerrit.libreoffice.org/11891 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/osx')
-rw-r--r--vcl/osx/a11yactionwrapper.mm4
-rw-r--r--vcl/osx/a11ycomponentwrapper.mm2
-rw-r--r--vcl/osx/a11ytextattributeswrapper.mm2
-rw-r--r--vcl/osx/a11ytextwrapper.mm4
-rw-r--r--vcl/osx/a11yvaluewrapper.mm10
-rw-r--r--vcl/osx/a11ywrapper.mm104
-rw-r--r--vcl/osx/a11ywrappercheckbox.mm2
-rw-r--r--vcl/osx/a11ywrapperradiobutton.mm2
-rw-r--r--vcl/osx/salframeview.mm2
-rw-r--r--vcl/osx/salinst.cxx2
10 files changed, 67 insertions, 67 deletions
diff --git a/vcl/osx/a11yactionwrapper.mm b/vcl/osx/a11yactionwrapper.mm
index fa0de9608950..5319c47bff3c 100644
--- a/vcl/osx/a11yactionwrapper.mm
+++ b/vcl/osx/a11yactionwrapper.mm
@@ -53,7 +53,7 @@
+(NSArray *)actionNamesForElement:(AquaA11yWrapper *)wrapper {
NSMutableArray * actionNames = [ [ NSMutableArray alloc ] init ];
- if ( [ wrapper accessibleAction ] != nil ) {
+ if ( [ wrapper accessibleAction ] ) {
for ( int cnt = 0; cnt < [ wrapper accessibleAction ] -> getAccessibleActionCount(); cnt++ ) {
[ actionNames addObject: [ AquaA11yActionWrapper nativeActionNameFor: CreateNSString ( [ wrapper accessibleAction ] -> getAccessibleActionDescription ( cnt ) ) ] ];
}
@@ -62,7 +62,7 @@
}
+(void)doAction:(NSString *)action ofElement:(AquaA11yWrapper *)wrapper {
- if ( [ wrapper accessibleAction ] != nil ) {
+ if ( [ wrapper accessibleAction ] ) {
for ( int cnt = 0; cnt < [ wrapper accessibleAction ] -> getAccessibleActionCount(); cnt++ ) {
if ( [ action isEqualToString: [ AquaA11yActionWrapper nativeActionNameFor: CreateNSString ( [ wrapper accessibleAction ] -> getAccessibleActionDescription ( cnt ) ) ] ] ) {
[ wrapper accessibleAction ] -> doAccessibleAction ( cnt );
diff --git a/vcl/osx/a11ycomponentwrapper.mm b/vcl/osx/a11ycomponentwrapper.mm
index b91029d6aca8..5b61c1257ca7 100644
--- a/vcl/osx/a11ycomponentwrapper.mm
+++ b/vcl/osx/a11ycomponentwrapper.mm
@@ -47,7 +47,7 @@ using namespace ::com::sun::star::uno;
}
+(id)descriptionAttributeForElement:(AquaA11yWrapper *)wrapper {
- if ( [ wrapper accessibleExtendedComponent ] != nil ) {
+ if ( [ wrapper accessibleExtendedComponent ] ) {
return CreateNSString ( [ wrapper accessibleExtendedComponent ] -> getToolTipText() );
} else {
return nil;
diff --git a/vcl/osx/a11ytextattributeswrapper.mm b/vcl/osx/a11ytextattributeswrapper.mm
index 072ace24f2bd..4b1823433b82 100644
--- a/vcl/osx/a11ytextattributeswrapper.mm
+++ b/vcl/osx/a11ytextattributeswrapper.mm
@@ -328,7 +328,7 @@ using namespace ::com::sun::star::uno;
try {
NSString * myString = CreateNSString ( [ wrapper accessibleText ] -> getText() ); // TODO: dirty fix for i87817
string = [ [ NSMutableAttributedString alloc ] initWithString: CreateNSString ( [ wrapper accessibleText ] -> getTextRange ( loc, loc + len ) ) ];
- if ( [ wrapper accessibleTextAttributes ] != nil && [myString characterAtIndex:0] != 57361) { // TODO: dirty fix for i87817
+ if ( [ wrapper accessibleTextAttributes ] && [myString characterAtIndex:0] != 57361) { // TODO: dirty fix for i87817
[ string beginEditing ];
// add default attributes for whole string
Sequence < PropertyValue > defaultAttributes = [ wrapper accessibleTextAttributes ] -> getDefaultAttributes ( emptySequence );
diff --git a/vcl/osx/a11ytextwrapper.mm b/vcl/osx/a11ytextwrapper.mm
index 91adf4f38668..36fcb9c04a72 100644
--- a/vcl/osx/a11ytextwrapper.mm
+++ b/vcl/osx/a11ytextwrapper.mm
@@ -56,7 +56,7 @@ using namespace ::com::sun::star::uno;
}
+(void)setSelectedTextAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value {
- if ( [ wrapper accessibleEditableText ] != nil ) {
+ if ( [ wrapper accessibleEditableText ] ) {
NSAutoreleasePool * pool = [ [ NSAutoreleasePool alloc ] init ];
OUString newText = GetOUString ( (NSString *) value );
NSRange selectedTextRange = [ [ AquaA11yTextWrapper selectedTextRangeAttributeForElement: wrapper ] rangeValue ];
@@ -237,7 +237,7 @@ using namespace ::com::sun::star::uno;
maxy = vclRect.Height + vclRect.Y;
}
}
- if ( [ wrapper accessibleComponent ] != nil ) {
+ if ( [ wrapper accessibleComponent ] ) {
// get location on screen (must be added since get CharacterBounds returns values relative to parent)
Point screenPos = [ wrapper accessibleComponent ] -> getLocationOnScreen();
Point pos ( minx + screenPos.X, miny + screenPos.Y );
diff --git a/vcl/osx/a11yvaluewrapper.mm b/vcl/osx/a11yvaluewrapper.mm
index 539eb9124f67..6251fdc1dca6 100644
--- a/vcl/osx/a11yvaluewrapper.mm
+++ b/vcl/osx/a11yvaluewrapper.mm
@@ -30,7 +30,7 @@ using namespace ::com::sun::star::uno;
+(id)valueAttributeForElement:(AquaA11yWrapper *)wrapper {
// TODO: Detect Type from Any
- if ( [ wrapper accessibleValue ] != nil ) {
+ if ( [ wrapper accessibleValue ] ) {
long value = 0;
[ wrapper accessibleValue ] -> getCurrentValue() >>= value;
return [ NSNumber numberWithLong: value ];
@@ -40,7 +40,7 @@ using namespace ::com::sun::star::uno;
+(id)minValueAttributeForElement:(AquaA11yWrapper *)wrapper {
// TODO: Detect Type from Any
- if ( [ wrapper accessibleValue ] != nil ) {
+ if ( [ wrapper accessibleValue ] ) {
long value = 0;
[ wrapper accessibleValue ] -> getMinimumValue() >>= value;
return [ NSNumber numberWithLong: value ];
@@ -50,7 +50,7 @@ using namespace ::com::sun::star::uno;
+(id)maxValueAttributeForElement:(AquaA11yWrapper *)wrapper {
// TODO: Detect Type from Any
- if ( [ wrapper accessibleValue ] != nil ) {
+ if ( [ wrapper accessibleValue ] ) {
long value = 0;
[ wrapper accessibleValue ] -> getMaximumValue() >>= value;
return [ NSNumber numberWithLong: value ];
@@ -61,7 +61,7 @@ using namespace ::com::sun::star::uno;
+(void)setValueAttributeForElement:(AquaA11yWrapper *)wrapper to:(id)value {
// TODO: Detect Type from NSNumber
if ( [ value isKindOfClass: [ NSNumber class ] ]
- && [ wrapper accessibleValue ] != nil ) {
+ && [ wrapper accessibleValue ] ) {
NSNumber * number = (NSNumber *) value;
Any numberAny ( [ number longValue ] );
[ wrapper accessibleValue ] -> setCurrentValue ( numberAny );
@@ -74,7 +74,7 @@ using namespace ::com::sun::star::uno;
+(BOOL)isAttributeSettable:(NSString *)attribute forElement:(AquaA11yWrapper *)wrapper {
BOOL isSettable = NO;
- if ( [ wrapper accessibleValue ] != nil
+ if ( [ wrapper accessibleValue ]
&& [ attribute isEqualToString: NSAccessibilityValueAttribute ]
&& ! [ wrapper isKindOfClass: [ AquaA11yWrapperStaticText class ] ] ) {
isSettable = YES;
diff --git a/vcl/osx/a11ywrapper.mm b/vcl/osx/a11ywrapper.mm
index d454b215f395..2ef107ecd65b 100644
--- a/vcl/osx/a11ywrapper.mm
+++ b/vcl/osx/a11ywrapper.mm
@@ -80,7 +80,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
-(id)initWithAccessibleContext: (Reference < XAccessibleContext >) rxAccessibleContext {
self = [ super init ];
- if ( self != nil ) {
+ if ( self ) {
[ self setDefaults: rxAccessibleContext ];
}
return self;
@@ -146,7 +146,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(void)dealloc {
- if ( mpReferenceWrapper != nil ) {
+ if ( mpReferenceWrapper ) {
delete mpReferenceWrapper;
}
[ super dealloc ];
@@ -160,7 +160,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
// (getter with parameter) attributeNameHereAttributeForParameter:
// (setter) setAttributeNameHereAttributeForElement:to:
-(SEL)selectorForAttribute:(NSString *)attribute asGetter:(BOOL)asGetter withGetterParameter:(BOOL)withGetterParameter {
- SEL selector = nil;
+ SEL selector = (SEL)nil;
NSAutoreleasePool * pool = [ [ NSAutoreleasePool alloc ] init ];
@try {
// step 1: create method name from attribute name
@@ -186,7 +186,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
// step 2: create selector
selector = NSSelectorFromString ( methodName );
} @catch ( id exception ) {
- selector = nil;
+ selector = (SEL)nil;
}
[ pool release ];
return selector;
@@ -256,7 +256,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
-(id)descriptionAttribute {
if ( [ self accessibleContext ] -> getAccessibleRole() == AccessibleRole::COMBO_BOX ) {
return [ self titleAttribute ];
- } else if ( [ self accessibleExtendedComponent ] != nil ) {
+ } else if ( [ self accessibleExtendedComponent ] ) {
return [ AquaA11yComponentWrapper descriptionAttributeForElement: self ];
} else {
return CreateNSString ( [ self accessibleContext ] -> getAccessibleDescription() );
@@ -336,7 +336,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
}
return children;
- } else if ( [ self accessibleTable ] != nil )
+ } else if ( [ self accessibleTable ] )
{
AquaA11yTableWrapper* pTable = [self isKindOfClass: [AquaA11yTableWrapper class]] ? (AquaA11yTableWrapper*)self : nil;
return [ AquaA11yTableWrapper childrenAttributeForElement: pTable ];
@@ -409,7 +409,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)sizeAttribute {
- if ( [ self accessibleComponent ] != nil ) {
+ if ( [ self accessibleComponent ] ) {
return [ AquaA11yComponentWrapper sizeAttributeForElement: self ];
} else {
return nil;
@@ -417,7 +417,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)positionAttribute {
- if ( [ self accessibleComponent ] != nil ) {
+ if ( [ self accessibleComponent ] ) {
return [ AquaA11yComponentWrapper positionAttributeForElement: self ];
} else {
return nil;
@@ -469,9 +469,9 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
-(id)valueAttribute {
if ( [ [ self roleAttribute ] isEqualToString: NSAccessibilityMenuItemRole ] ) {
return nil;
- } else if ( [ self accessibleText ] != nil ) {
+ } else if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper valueAttributeForElement: self ];
- } else if ( [ self accessibleValue ] != nil ) {
+ } else if ( [ self accessibleValue ] ) {
return [ AquaA11yValueWrapper valueAttributeForElement: self ];
} else {
return nil;
@@ -479,7 +479,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)minValueAttribute {
- if ( [ self accessibleValue ] != nil ) {
+ if ( [ self accessibleValue ] ) {
return [ AquaA11yValueWrapper minValueAttributeForElement: self ];
} else {
return nil;
@@ -487,7 +487,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)maxValueAttribute {
- if ( [ self accessibleValue ] != nil ) {
+ if ( [ self accessibleValue ] ) {
return [ AquaA11yValueWrapper maxValueAttributeForElement: self ];
} else {
return nil;
@@ -503,7 +503,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)numberOfCharactersAttribute {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper numberOfCharactersAttributeForElement: self ];
} else {
return nil;
@@ -511,7 +511,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)selectedTextAttribute {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper selectedTextAttributeForElement: self ];
} else {
return nil;
@@ -519,7 +519,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)selectedTextRangeAttribute {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper selectedTextRangeAttributeForElement: self ];
} else {
return nil;
@@ -527,7 +527,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)visibleCharacterRangeAttribute {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper visibleCharacterRangeAttributeForElement: self ];
} else {
return nil;
@@ -539,7 +539,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)sharedTextUIElementsAttribute {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper sharedTextUIElementsAttributeForElement: self ];
} else {
return nil;
@@ -547,7 +547,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)sharedCharacterRangeAttribute {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper sharedCharacterRangeAttributeForElement: self ];
} else {
return nil;
@@ -563,7 +563,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)stringForRangeAttributeForParameter:(id)range {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper stringForRangeAttributeForElement: self forParameter: range ];
} else {
return nil;
@@ -571,7 +571,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)attributedStringForRangeAttributeForParameter:(id)range {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper attributedStringForRangeAttributeForElement: self forParameter: range ];
} else {
return nil;
@@ -579,7 +579,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)rangeForIndexAttributeForParameter:(id)index {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper rangeForIndexAttributeForElement: self forParameter: index ];
} else {
return nil;
@@ -587,7 +587,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)rangeForPositionAttributeForParameter:(id)point {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper rangeForPositionAttributeForElement: self forParameter: point ];
} else {
return nil;
@@ -595,7 +595,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)boundsForRangeAttributeForParameter:(id)range {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper boundsForRangeAttributeForElement: self forParameter: range ];
} else {
return nil;
@@ -603,7 +603,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)styleRangeForIndexAttributeForParameter:(id)index {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper styleRangeForIndexAttributeForElement: self forParameter: index ];
} else {
return nil;
@@ -611,7 +611,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)rTFForRangeAttributeForParameter:(id)range {
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
return [ AquaA11yTextWrapper rTFForRangeAttributeForElement: self forParameter: range ];
} else {
return nil;
@@ -640,7 +640,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
titleElement = [ AquaA11yFactory wrapperForAccessibleContext: rxAccessible -> getAccessibleContext() ];
}
}
- if ( title != nil ) {
+ if ( title ) {
[ title release ];
}
return titleElement;
@@ -664,7 +664,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)lineForIndexAttributeForParameter:(id)index {
- if ( [ self accessibleMultiLineText ] != nil ) {
+ if ( [ self accessibleMultiLineText ] ) {
return [ AquaA11yTextWrapper lineForIndexAttributeForElement: self forParameter: index ];
} else {
return nil;
@@ -672,7 +672,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
}
-(id)rangeForLineAttributeForParameter:(id)line {
- if ( [ self accessibleMultiLineText ] != nil ) {
+ if ( [ self accessibleMultiLineText ] ) {
return [ AquaA11yTextWrapper rangeForLineAttributeForElement: self forParameter: line ];
} else {
return nil;
@@ -692,7 +692,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
id value = nil;
// if we are no longer in the wrapper repository, we have been disposed
AquaA11yWrapper * theWrapper = [ AquaA11yFactory wrapperForAccessibleContext: [ self accessibleContext ] createIfNotExists: NO ];
- if ( theWrapper != nil || mIsTableCell ) {
+ if ( theWrapper || mIsTableCell ) {
try {
SEL methodSelector = [ self selectorForAttribute: attribute asGetter: YES withGetterParameter: NO ];
if ( [ self respondsToSelector: methodSelector ] ) {
@@ -706,7 +706,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
// empty
}
}
- if ( theWrapper != nil ) {
+ if ( theWrapper ) {
[ theWrapper release ]; // the above called method calls retain on the returned Wrapper
}
return value;
@@ -761,7 +761,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
title = (NSString *) [ self titleAttribute ];
Reference < XAccessibleRelationSet > rxRelationSet = [ self accessibleContext ] -> getAccessibleRelationSet();
// Special Attributes depending on attribute values
- if ( nativeSubrole != nil && ! [ nativeSubrole isEqualToString: @"" ] ) {
+ if ( nativeSubrole && ! [ nativeSubrole isEqualToString: @"" ] ) {
[ attributeNames addObject: NSAccessibilitySubroleAttribute ];
}
try
@@ -774,7 +774,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
catch( DisposedException& ) {}
catch( RuntimeException& ) {}
- if ( title != nil && ! [ title isEqualToString: @"" ] ) {
+ if ( title && ! [ title isEqualToString: @"" ] ) {
[ attributeNames addObject: NSAccessibilityTitleAttribute ];
}
if ( [ title length ] == 0 && rxRelationSet.is() && rxRelationSet -> containsRelation ( AccessibleRelationType::LABELED_BY ) ) {
@@ -787,29 +787,29 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
if( [self accessibleContext ] -> getAccessibleRole() == AccessibleRole::TABLE )
[AquaA11yTableWrapper addAttributeNamesTo: attributeNames object: self];
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
[ AquaA11yTextWrapper addAttributeNamesTo: attributeNames ];
}
- if ( [ self accessibleComponent ] != nil ) {
+ if ( [ self accessibleComponent ] ) {
[ AquaA11yComponentWrapper addAttributeNamesTo: attributeNames ];
}
- if ( [ self accessibleSelection ] != nil ) {
+ if ( [ self accessibleSelection ] ) {
[ AquaA11ySelectionWrapper addAttributeNamesTo: attributeNames ];
}
- if ( [ self accessibleValue ] != nil ) {
+ if ( [ self accessibleValue ] ) {
[ AquaA11yValueWrapper addAttributeNamesTo: attributeNames ];
}
[ nativeSubrole release ];
[ title release ];
return attributeNames;
} catch ( DisposedException & e ) { // Object is no longer available
- if ( nativeSubrole != nil ) {
+ if ( nativeSubrole ) {
[ nativeSubrole release ];
}
- if ( title != nil ) {
+ if ( title ) {
[ title release ];
}
- if ( attributeNames != nil ) {
+ if ( attributeNames ) {
[ attributeNames release ];
}
[ AquaA11yFactory removeFromWrapperRepositoryFor: [ self accessibleContext ] ];
@@ -820,16 +820,16 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
-(BOOL)accessibilityIsAttributeSettable:(NSString *)attribute {
SAL_INFO("vcl.a11y", "[" << self << " accessibilityAttributeIsSettable:" << attribute << "]");
BOOL isSettable = NO;
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
isSettable = [ AquaA11yTextWrapper isAttributeSettable: attribute forElement: self ];
}
- if ( ! isSettable && [ self accessibleComponent ] != nil ) {
+ if ( ! isSettable && [ self accessibleComponent ] ) {
isSettable = [ AquaA11yComponentWrapper isAttributeSettable: attribute forElement: self ];
}
- if ( ! isSettable && [ self accessibleSelection ] != nil ) {
+ if ( ! isSettable && [ self accessibleSelection ] ) {
isSettable = [ AquaA11ySelectionWrapper isAttributeSettable: attribute forElement: self ];
}
- if ( ! isSettable && [ self accessibleValue ] != nil ) {
+ if ( ! isSettable && [ self accessibleValue ] ) {
isSettable = [ AquaA11yValueWrapper isAttributeSettable: attribute forElement: self ];
}
return isSettable; // TODO: to be completed
@@ -839,7 +839,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
SAL_INFO("vcl.a11y", "[" << self << " accessibilityParameterizedAttributeNames]");
NSMutableArray * attributeNames = [ [ NSMutableArray alloc ] init ];
// Special Attributes depending on interface
- if ( [ self accessibleText ] != nil ) {
+ if ( [ self accessibleText ] ) {
[ AquaA11yTextWrapper addParameterizedAttributeNamesTo: attributeNames ];
}
return attributeNames; // TODO: to be completed
@@ -928,9 +928,9 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
if ( enabled
&& [ role isEqualToString: NSAccessibilityTextAreaRole ]
&& [ parentRole isEqualToString: NSAccessibilityComboBoxRole ]
- && parentAsWrapper != nil ) {
+ && parentAsWrapper ) {
wrapper = parentAsWrapper;
- } else if ( enabled && [ self accessibleAction ] != nil ) {
+ } else if ( enabled && [ self accessibleAction ] ) {
wrapper = self ;
}
[ parentRole release ];
@@ -942,7 +942,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
-(void)accessibilityPerformAction:(NSString *)action {
SAL_INFO("vcl.a11y", "[" << self << " accessibilityPerformAction:" << action << "]");
AquaA11yWrapper * actionResponder = [ self actionResponder ];
- if ( actionResponder != nil ) {
+ if ( actionResponder ) {
[ AquaA11yActionWrapper doAction: action ofElement: actionResponder ];
}
}
@@ -951,7 +951,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
SAL_INFO("vcl.a11y", "[" << self << " accessibilityActionNames]");
NSArray * actionNames = nil;
AquaA11yWrapper * actionResponder = [ self actionResponder ];
- if ( actionResponder != nil ) {
+ if ( actionResponder ) {
actionNames = [ AquaA11yActionWrapper actionNamesForElement: actionResponder ];
} else {
actionNames = [ [ NSArray alloc ] init ];
@@ -970,7 +970,7 @@ static std::ostream &operator<<(std::ostream &s, NSPoint point) {
NSValue * position = [ viewElement accessibilityAttributeValue: NSAccessibilityPositionAttribute ];
NSValue * size = [ viewElement accessibilityAttributeValue: NSAccessibilitySizeAttribute ];
SAL_WNODEPRECATED_DECLARATIONS_POP
- if ( position != nil && size != nil ) {
+ if ( position && size ) {
float minX = [ position pointValue ].x;
float minY = [ position pointValue ].y;
float maxX = minX + [ size sizeValue ].width;
@@ -1049,7 +1049,7 @@ Reference < XAccessibleContext > hitTestRunner ( com::sun::star::awt::Point poin
if ( [ childWindows count ] > 0 ) {
NSWindow * element = nil;
NSEnumerator * enumerator = [ childWindows objectEnumerator ];
- while ( ( element = [ enumerator nextObject ] ) && hitChild == nil ) {
+ while ( ( element = [ enumerator nextObject ] ) && !hitChild.is() ) {
if ( [ element isKindOfClass: [ SalFrameWindow class ] ] && [ self isViewElement: element hitByPoint: point ] ) {
// we have a child window that is hit
Reference < XAccessibleRelationSet > relationSet = [ ( ( SalFrameWindow * ) element ) accessibleContext ] -> getAccessibleRelationSet();
@@ -1069,7 +1069,7 @@ Reference < XAccessibleContext > hitTestRunner ( com::sun::star::awt::Point poin
}
// nothing hit yet, so check ourself
if ( ! hitChild.is() ) {
- if ( mpReferenceWrapper == nil ) {
+ if ( !mpReferenceWrapper ) {
[ self setDefaults: [ self accessibleContext ] ];
}
hitChild = hitTestRunner ( hitPoint, mpReferenceWrapper -> rAccessibleContext );
@@ -1077,7 +1077,7 @@ Reference < XAccessibleContext > hitTestRunner ( com::sun::star::awt::Point poin
if ( hitChild.is() ) {
wrapper = [ AquaA11yFactory wrapperForAccessibleContext: hitChild ];
}
- if ( wrapper != nil ) {
+ if ( wrapper ) {
[ wrapper retain ]; // TODO: retain only when transient ?
}
return wrapper;
diff --git a/vcl/osx/a11ywrappercheckbox.mm b/vcl/osx/a11ywrappercheckbox.mm
index e8ea2a00b9d6..e8e6ad3d0210 100644
--- a/vcl/osx/a11ywrappercheckbox.mm
+++ b/vcl/osx/a11ywrappercheckbox.mm
@@ -29,7 +29,7 @@
@implementation AquaA11yWrapperCheckBox : AquaA11yWrapper
-(id)valueAttribute {
- if ( [ self accessibleValue ] != nil ) {
+ if ( [ self accessibleValue ] ) {
return [ AquaA11yValueWrapper valueAttributeForElement: self ];
}
return [ NSNumber numberWithInt: 0 ];
diff --git a/vcl/osx/a11ywrapperradiobutton.mm b/vcl/osx/a11ywrapperradiobutton.mm
index cfd8dbd23871..de94af6a196e 100644
--- a/vcl/osx/a11ywrapperradiobutton.mm
+++ b/vcl/osx/a11ywrapperradiobutton.mm
@@ -28,7 +28,7 @@
@implementation AquaA11yWrapperRadioButton : AquaA11yWrapper
-(id)valueAttribute {
- if ( [ self accessibleValue ] != nil ) {
+ if ( [ self accessibleValue ] ) {
return [ AquaA11yValueWrapper valueAttributeForElement: self ];
}
return [ NSNumber numberWithInt: 0 ];
diff --git a/vcl/osx/salframeview.mm b/vcl/osx/salframeview.mm
index aca5e8dc4a4d..add9891b6f86 100644
--- a/vcl/osx/salframeview.mm
+++ b/vcl/osx/salframeview.mm
@@ -1731,7 +1731,7 @@ private:
-(::com::sun::star::accessibility::XAccessibleContext *)accessibleContext
{
- if ( mpReferenceWrapper == nil ) {
+ if ( !mpReferenceWrapper ) {
// some frames never become visible ..
::vcl::Window *pWindow = mpFrame -> GetWindow();
if ( ! pWindow )
diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx
index 26ff137bc763..1471a01b424b 100644
--- a/vcl/osx/salinst.cxx
+++ b/vcl/osx/salinst.cxx
@@ -476,7 +476,7 @@ void AquaSalInstance::handleAppDefinedEvent( NSEvent* pEvent )
std::list<AquaSalFrame*>::iterator it = pSalData->maFrames.begin();
while( it != pSalData->maFrames.end() )
{
- if ( (*it) && ((*it)->mbFullScreen == true) )
+ if ( (*it) && (*it)->mbFullScreen )
bIsFullScreenMode = true;
++it;
}