Add NSScrubberSelectionStyle

This commit is contained in:
Duncan Cunningham 2024-03-10 14:02:33 +01:00
parent 4bb6117f35
commit ab3f1f7803
2 changed files with 15 additions and 0 deletions

View File

@ -56,4 +56,16 @@
@end
@implementation NSScrubberSelectionStyle
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
return [NSMethodSignature signatureWithObjCTypes: "v@:"];
}
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]);
}
@end

View File

@ -30,3 +30,6 @@
@interface NSScrubberProportionalLayout : NSScrubberLayout
@end
@interface NSScrubberSelectionStyle : NSObject <NSCoding>
@end