Artifact 962ce788caf8e78e93446093a94201b1160905c4382ce6d8eb2a7645bcabf6b0:
- File
src/KeyMapping.m
— part of check-in
[75e920ae30]
at
2025-03-29 14:25:43
on branch trunk
— Switch from clang-format to manual formatting
clang-format does too many weird things. (user: js, size: 323) [annotate] [blame] [check-ins using]
#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]; return self; } @end