Differences From Artifact [c90f999690]:
- File src/KeyMapping.m — part of check-in [14861826d4] at 2025-03-05 23:18:28 on branch trunk — Move classes into separate files (user: js, size: 196) [annotate] [blame] [check-ins using]
To Artifact [49eed66821]:
- File src/KeyMapping.m — part of check-in [89fbd7a152] at 2025-03-20 13:21:56 on branch trunk — Make more use of convenience methods (user: js, size: 317) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | + + + + + | #import "KeyMapping.h" @implementation KeyMapping + (instancetype)mappingWithCode:(int)code name:(OFString *)name { return [[self alloc] initWithCode:code name:name]; } - (instancetype)initWithCode:(int)code name:(OFString *)name { self = [super init]; _code = code; _name = [name copy]; |
︙ |