Artifact 106bd88ce21c63052e1bfecc20b86846ee384c45a9fd43a819a4fada7a96d64a:
- File
src/Menu.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: 291) [annotate] [blame] [check-ins using]
#import "Menu.h" @implementation Menu + (instancetype)menuWithName: (OFString *)name { return [[self alloc] initWithName: name]; } - (instancetype)initWithName: (OFString *)name { self = [super init]; _name = [name copy]; _items = [[OFMutableArray alloc] init]; return self; } @end