diff options
| author | Simon Tatham <anakin@pobox.com> | 2006-08-25 07:10:59 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2006-08-25 07:10:59 +0000 |
| commit | 9955c5ffc38a2cba73bcd49ea8ed97bdd2739901 (patch) | |
| tree | 96c71ad3163c7a04072ad0c837cb04538e6f8f34 /osx.m | |
| parent | aa08d80a5f9b9fe0601a6976063a4746dc56e237 (diff) | |
| download | puzzles-9955c5ffc38a2cba73bcd49ea8ed97bdd2739901.zip puzzles-9955c5ffc38a2cba73bcd49ea8ed97bdd2739901.tar.gz puzzles-9955c5ffc38a2cba73bcd49ea8ed97bdd2739901.tar.bz2 puzzles-9955c5ffc38a2cba73bcd49ea8ed97bdd2739901.tar.xz | |
Jesse W points out that I forgot to update the OS X front end in
r6420, so both drawing.c _and_ the front end were prepending the
time to the front of the Mines status bar, leading to a double
timestamp.
[originally from svn r6796]
[r6420 == 240b6cab8ce8729b7270a0411ab39038814058f1]
Diffstat (limited to 'osx.m')
| -rw-r--r-- | osx.m | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1219,9 +1219,7 @@ struct frontend { - (void)setStatusLine:(char *)text { - char *rewritten = midend_rewrite_statusbar(me, text); - [[status cell] setTitle:[NSString stringWithCString:rewritten]]; - sfree(rewritten); + [[status cell] setTitle:[NSString stringWithCString:text]]; } @end |