mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-23 12:09:51 +00:00
Add printf to stubs in NSAccessibility.m and NSPasteboard.m
This commit is contained in:
parent
c1b75488c7
commit
6ee777f377
@ -586,14 +586,17 @@ id NSAccessibilityUnignoredAncestor(id element) {
|
||||
}
|
||||
|
||||
id NSAccessibilityUnignoredDescendant(id element) {
|
||||
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
||||
return nil;
|
||||
}
|
||||
|
||||
NSArray *NSAccessibilityUnignoredChildren(NSArray *originalChildren) {
|
||||
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
||||
return nil;
|
||||
}
|
||||
|
||||
NSArray *NSAccessibilityUnignoredChildrenForOnlyChild(id originalChild) {
|
||||
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
||||
return nil;
|
||||
}
|
||||
|
||||
|
@ -181,10 +181,12 @@ const NSPasteboardReadingOptionKey
|
||||
}
|
||||
|
||||
- (BOOL) canReadItemWithDataConformingToTypes:(NSArray<NSString *> *) types {
|
||||
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (nullable NSArray *)readObjectsForClasses:(NSArray<Class> *)classArray options:(nullable NSDictionary<NSPasteboardReadingOptionKey, id> *) options {
|
||||
printf("STUB %s\n", __PRETTY_FUNCTION__);
|
||||
return nil;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user