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]
This commit is contained in:
Simon Tatham
2006-08-25 07:10:59 +00:00
parent aa08d80a5f
commit 9955c5ffc3

4
osx.m
View File

@ -1219,9 +1219,7 @@ struct frontend {
- (void)setStatusLine:(char *)text - (void)setStatusLine:(char *)text
{ {
char *rewritten = midend_rewrite_statusbar(me, text); [[status cell] setTitle:[NSString stringWithCString:text]];
[[status cell] setTitle:[NSString stringWithCString:rewritten]];
sfree(rewritten);
} }
@end @end