mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Substitute (NSString*) for (id <String>)
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1945 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
182592f4a1
commit
7202be0561
34 changed files with 212 additions and 212 deletions
|
@ -182,7 +182,7 @@ static BOOL debug_memory_stream = NO;
|
|||
return l;
|
||||
}
|
||||
|
||||
- (id <String>) readLine
|
||||
- (NSString*) readLine
|
||||
{
|
||||
char *nl = memchr(buffer+prefix+position, '\n', eof_position-position);
|
||||
char *ret = NULL;
|
||||
|
@ -224,7 +224,7 @@ void unchar_func(void *s, int c)
|
|||
}
|
||||
|
||||
#if HAVE_VSPRINTF
|
||||
- (int) writeFormat: (id <String>)format
|
||||
- (int) writeFormat: (NSString*)format
|
||||
arguments: (va_list)arg
|
||||
{
|
||||
int ret;
|
||||
|
@ -256,7 +256,7 @@ void unchar_func(void *s, int c)
|
|||
}
|
||||
#endif
|
||||
|
||||
- (int) readFormat: (id <String>)format, ...
|
||||
- (int) readFormat: (NSString*)format, ...
|
||||
{
|
||||
int ret;
|
||||
va_list ap;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue