Use String* instead of char*.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@112 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-03-12 21:50:07 +00:00
parent 71faa85784
commit 6c36e166d7
9 changed files with 28 additions and 25 deletions

View file

@ -26,13 +26,13 @@
@implementation Port
+ newRegisteredPortWithName: (const char *)n
+ newRegisteredPortWithName: (String*)n
{
[self notImplemented:_cmd];
return nil;
}
+ newPortFromRegisterWithName: (const char *)n onHost: (const char *)host
+ newPortFromRegisterWithName: (String*)n onHost: (String*)host
{
[self notImplemented:_cmd];
return nil;