Use String* instead of char*.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@124 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-03-12 22:54:33 +00:00
parent b41a2461cc
commit 3a7cc66e31
2 changed files with 7 additions and 3 deletions

View file

@ -4,6 +4,7 @@
#include <objects/Connection.h>
#include <objc/List.h>
#include <objects/BinaryCoder.h>
#include <objects/String.h>
#include "server.h"
@implementation Server
@ -206,7 +207,7 @@ int main()
#if NeXT_runtime
[Proxy setProtocolForProxies:@protocol(AllProxies)];
#endif
c = [Connection newRegisteringAtName:"test2server" withRootObject:l];
c = [Connection newRegisteringAtName:@"test2server" withRootObject:l];
[c registerForInvalidationNotification:l];
[c setDelegate:l];