Differences From Artifact [8c83ebcd46]:
- File src/ConsoleLine.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: 340) [annotate] [blame] [check-ins using]
To Artifact [558d4dd328]:
- File
src/ConsoleLine.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: 346) [annotate] [blame] [check-ins using]
1 2 3 | #import "ConsoleLine.h" @implementation ConsoleLine | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #import "ConsoleLine.h" @implementation ConsoleLine + (instancetype)lineWithText: (OFString *)text outtime: (int)outtime { return [[self alloc] initWithText: text outtime: outtime]; } - (instancetype)initWithText: (OFString *)text outtime: (int)outtime { self = [super init]; _text = [text copy]; _outtime = outtime; return self; |
︙ | ︙ |