mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
GNUstep compatibility: comment out some API calls that GNUstep
apparently doesn't have. Fortunately they were optional anyway. [originally from svn r9500]
This commit is contained in:
4
osx.m
4
osx.m
@ -900,10 +900,14 @@ struct frontend {
|
|||||||
[status setFrame:frame];
|
[status setFrame:frame];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef GNUSTEP
|
||||||
NSDisableScreenUpdates();
|
NSDisableScreenUpdates();
|
||||||
|
#endif
|
||||||
[self setContentSize:size];
|
[self setContentSize:size];
|
||||||
[self setupContentView];
|
[self setupContentView];
|
||||||
|
#ifndef GNUSTEP
|
||||||
NSEnableScreenUpdates();
|
NSEnableScreenUpdates();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)presetGame:(id)sender
|
- (void)presetGame:(id)sender
|
||||||
|
Reference in New Issue
Block a user