Config/make fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4353 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1999-06-04 04:26:07 +00:00
parent 6e9450447c
commit 6ca94e29a7
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
1999-06-03 Adam Fedor <fedor@gnu.org>
* Source/NSGraphicsContext.m (GSCurrentContext): Insert = (patch
from John BEPPU <beppu@taurus.oac.uci.edu>).
Thu Jun 3 9:35:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* Source/NSWorkspace.m: Updated app launching code to supply info

View file

@ -72,7 +72,7 @@ NSGraphicsContext *GSCurrentContext()
return (NSGraphicsContext*) th->_gcontext;
#else
NSMutableDictionary *dict [[NSThread currentThread] threadDictionary];
NSMutableDictionary *dict = [[NSThread currentThread] threadDictionary];
return (NSGraphicsContext*) [dict objectForKey: NSGraphicsContextThreadKey];
#endif
@ -135,7 +135,7 @@ struct NSWindow_struct
th->_gcontext = context;
#else
NSMutableDictionary *dict [[NSThread currentThread] threadDictionary];
NSMutableDictionary *dict = [[NSThread currentThread] threadDictionary];
[dict setObject: context forKey: NSGraphicsContextThreadKey];
#endif