mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Fix issues with using ASSIGN
This commit is contained in:
parent
6a655f8cd0
commit
3d0a836b87
1 changed files with 3 additions and 3 deletions
|
@ -240,7 +240,7 @@ static NSMutableDictionary *__subscribers = nil;
|
|||
|
||||
- (void) setCancellationHandler: (GSProgressCancellationHandler) handler
|
||||
{
|
||||
ASSIGN(internal->_cancellationHandler, handler);
|
||||
internal->_cancellationHandler = handler;
|
||||
}
|
||||
|
||||
- (BOOL) isPausable
|
||||
|
@ -261,7 +261,7 @@ static NSMutableDictionary *__subscribers = nil;
|
|||
|
||||
- (void) setPausingHandler: (GSProgressPausingHandler) handler
|
||||
{
|
||||
ASSIGN(internal->_pausingHandler, handler);
|
||||
internal->_pausingHandler = handler;
|
||||
}
|
||||
|
||||
- (void) resume
|
||||
|
@ -271,7 +271,7 @@ static NSMutableDictionary *__subscribers = nil;
|
|||
|
||||
- (void) setResumingHandler: (GSProgressResumingHandler) handler
|
||||
{
|
||||
ASSIGN(internal->_resumingHandler, handler);
|
||||
internal->_resumingHandler = handler;
|
||||
}
|
||||
|
||||
// Progress Information
|
||||
|
|
Loading…
Reference in a new issue