Differences From Artifact [656fe9791c]:
- File
src/rendertext.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: 6484) [annotate] [blame] [check-ins using]
To Artifact [af0dd28de8]:
- File src/rendertext.m — part of check-in [c634a689e7] at 2025-03-29 17:13:40 on branch trunk — More style fixes (user: js, size: 6456) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
136 137 138 139 140 141 142 | void draw_textf(OFConstantString *format, int left, int top, int gl_num, ...) { va_list arguments; va_start(arguments, gl_num); OFString *str = [[OFString alloc] initWithFormat: format | | | 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | void draw_textf(OFConstantString *format, int left, int top, int gl_num, ...) { va_list arguments; va_start(arguments, gl_num); OFString *str = [[OFString alloc] initWithFormat: format arguments: arguments]; va_end(arguments); draw_text(str, left, top, gl_num); } void draw_text(OFString *string, int left, int top, int gl_num) { |
︙ | ︙ |