darling-cocotron/AppKit/NSRuleEditorButtonCell.m
2020-07-18 08:41:35 -07:00

16 lines
371 B
Objective-C

#import "NSRuleEditorButtonCell.h"
@implementation NSRuleEditorButtonCell
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
return [NSMethodSignature signatureWithObjCTypes: "v@:"];
}
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]);
}
@end