Browse Source

Stop warning.

ui-automation-test
Steven Kirk 5 years ago
parent
commit
af588cc193
  1. 4
      native/Avalonia.Native/src/OSX/automation.mm

4
native/Avalonia.Native/src/OSX/automation.mm

@ -449,9 +449,13 @@ private:
NSAccessibilityPostNotification(focused, NSAccessibilityFocusedUIElementChangedNotification);
}
// Although this method is marked as deprecated we get runtime warnings if we don't handle it.
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-implementations"
- (void)accessibilityPerformAction:(NSAccessibilityActionName)action
{
[_owner accessibilityPerformAction:action];
}
#pragma clang diagnostic pop
@end

Loading…
Cancel
Save