mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
fixup incorrect commit
This commit is contained in:
parent
31fbd3f9c7
commit
c1d98567a8
1 changed files with 15 additions and 5 deletions
|
@ -383,6 +383,11 @@ static RunLoopEventType typeForStream(NSStream *aStream)
|
|||
return;
|
||||
}
|
||||
|
||||
- (void) _removeFromRunLoop: (NSRunLoop *)aRunLoop forMode: (NSString *)mode
|
||||
{
|
||||
[aRunLoop removeStream: self mode: mode];
|
||||
}
|
||||
|
||||
- (void) _resetEvents: (NSUInteger)mask
|
||||
{
|
||||
return;
|
||||
|
@ -392,6 +397,16 @@ static RunLoopEventType typeForStream(NSStream *aStream)
|
|||
{
|
||||
}
|
||||
|
||||
- (BOOL) _scheduled
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (void) _scheduleInRunLoop: (NSRunLoop*)loop forMode: (NSString*)mode
|
||||
{
|
||||
[loop addStream: self mode: mode];
|
||||
}
|
||||
|
||||
- (void) _sendEvent: (NSStreamEvent)event
|
||||
{
|
||||
}
|
||||
|
@ -488,11 +503,6 @@ static RunLoopEventType typeForStream(NSStream *aStream)
|
|||
[self _setStatus: NSStreamStatusError];
|
||||
}
|
||||
|
||||
- (void) _removeFromRunLoop: (NSRunLoop *)aRunLoop forMode: (NSString *)mode
|
||||
{
|
||||
[aRunLoop removeStream: self mode: mode];
|
||||
}
|
||||
|
||||
- (void) _resetEvents: (NSUInteger)mask
|
||||
{
|
||||
_events &= ~mask;
|
||||
|
|
Loading…
Reference in a new issue