From aff9817c9d365588c22f40515de7ea5d9d35e6a7 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Wed, 7 Feb 2018 11:43:44 -0500 Subject: Rename title to status in gfcocoa Also separate the options and fileName buffers in gfxx. --- bin/gfcocoa.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/gfcocoa.m') diff --git a/bin/gfcocoa.m b/bin/gfcocoa.m index 13b218a7..1839bcd0 100644 --- a/bin/gfcocoa.m +++ b/bin/gfcocoa.m @@ -23,7 +23,7 @@ #define UNUSED __attribute__((unused)) extern int init(int argc, char *argv[]); -extern const char *title(void); +extern const char *status(void); extern void draw(uint32_t *buf, size_t xres, size_t yres); extern void input(char in); @@ -42,7 +42,7 @@ extern void input(char in); } - (void) setWindowTitle { - [[self window] setTitle: [NSString stringWithUTF8String: title()]]; + [[self window] setTitle: [NSString stringWithUTF8String: status()]]; } - (void) draw { -- cgit 1.4.1 id=b3d41d6df5a1f49ea7f3a2be1279a1c63e2d30fc'>refs log tree commit diff
path: root/doc/zlib (unfollow)
Commit message (Expand)Author
2020-12-29Add make lexerJune McEnroe
2020-12-29Clean up C lexerJune McEnroe
2020-12-29Clean up hilex code somewhatJune McEnroe
2020-12-29Match lex/yacc %% %{ %} lines as MacroJune McEnroe
2020-12-29Match top-level C definitions as IdentifierTagJune McEnroe
2020-12-29Match C type declarations as IdentifierTagJune McEnroe
2020-12-29Match function-like macro definitions as IdentifierTagJune McEnroe
2020-12-29Reconfigure C macro start conditionsJune McEnroe
2020-12-29Document HTML class namesJune McEnroe
2020-12-29Rename Tag class to IdentifierTagJune McEnroe
2020-12-29Change HTML class from hi to hilexJune McEnroe
2020-12-29Add hilex HTML outputJune McEnroe