Remove GC macros as GC is gone from base

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/dbuskit/trunk@39612 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2016-03-28 06:16:41 +00:00
parent 42dfcdcd7e
commit f967447b98

View File

@ -519,7 +519,7 @@
{
return nil;
}
observer = GS_GC_HIDE(anObserver);
observer = anObserver;
selector = aSelector;
// Make sure the necessary components are there and that the selector takes a
@ -535,7 +535,7 @@
- (id)observer
{
return GS_GC_UNHIDE(observer);
return observer;
}
- (SEL)selector
@ -561,7 +561,7 @@
// callback and need to avoid the reentrancy. We do this by scheduling
// delivery of the notification on the run loop.
[[NSRunLoop currentRunLoop] performSelector: selector
target: GS_GC_UNHIDE(observer)
target: observer
argument: notification
order: UINT_MAX
modes: [NSArray arrayWithObject: NSDefaultRunLoopMode]];