From 986380a33fc8fc4397355389b81e7044e858fa72 Mon Sep 17 00:00:00 2001 From: fedor Date: Fri, 4 Jun 1999 04:26:07 +0000 Subject: [PATCH] Config/make fixes git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4353 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/NSGraphicsContext.m | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fdd7121bd..9a8029a9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-06-03 Adam Fedor + + * Source/NSGraphicsContext.m (GSCurrentContext): Insert = (patch + from John BEPPU ). + Thu Jun 3 9:35:00 1999 Richard Frith-Macdonald * Source/NSWorkspace.m: Updated app launching code to supply info diff --git a/Source/NSGraphicsContext.m b/Source/NSGraphicsContext.m index 4e131de14..a41c1c7d7 100644 --- a/Source/NSGraphicsContext.m +++ b/Source/NSGraphicsContext.m @@ -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