git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26365 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-03-20 10:00:11 +00:00
parent 4fb2f3c708
commit aeabafcf12
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2008-03-20 Richard Frith-Macdonald <rfm@gnu.org>
* Source/win32/GSRunLoopCtxt.m: Fix bad function call (bug #22676)
2008-03-19 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSAutoreleasePool.m: Use get_imp() to fetch the

View file

@ -275,7 +275,7 @@ static const NSMapTableValueCallBacks WatcherMapValueCallBacks =
- (BOOL) pollUntil: (int)milliseconds within: (NSArray*)contexts
{
GSRunLoopThreadInfo *threadInfo = GSRunLoopForThread(nil, YES);
GSRunLoopThreadInfo *threadInfo = GSRunLoopInfoForThread(nil);
NSMapEnumerator hEnum;
GSRunLoopWatcher *watcher;
HANDLE handleArray[MAXIMUM_WAIT_OBJECTS-1];