mirror of
https://github.com/darlinghq/darling-dbuskit.git
synced 2024-11-23 04:09:42 +00:00
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:
parent
42dfcdcd7e
commit
f967447b98
@ -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]];
|
||||
|
Loading…
Reference in New Issue
Block a user