mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Use string objects instead of C strings
for name arguments to encoding methods. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@796 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a11f420b91
commit
07b43d0e5d
14 changed files with 41 additions and 41 deletions
|
@ -271,7 +271,7 @@ static int messagesReceivedCount;
|
|||
work the way I wanted, we wouldn't need to do this. */
|
||||
[op encodeValueOfCType:@encode(char*)
|
||||
at:&type
|
||||
withName:"selector type"];
|
||||
withName:@"selector type"];
|
||||
|
||||
/* xxx This doesn't work with proxies and the NeXT runtime because
|
||||
type may be a method_type from a remote machine with a
|
||||
|
@ -713,7 +713,7 @@ static int messagesReceivedCount;
|
|||
type = "";
|
||||
[op encodeValueOfCType:@encode(char*)
|
||||
at:&type
|
||||
withName:"Requested Method Type for Target"];
|
||||
withName:@"Requested Method Type for Target"];
|
||||
[op dismiss];
|
||||
return self;
|
||||
}
|
||||
|
@ -728,7 +728,7 @@ static int messagesReceivedCount;
|
|||
assert(in_port);
|
||||
/* Perhaps we should turn this into a class method. */
|
||||
assert([rmc connection] == self);
|
||||
[op encodeObject:rootObject withName:"root object"];
|
||||
[op encodeObject:rootObject withName:@"root object"];
|
||||
[op dismiss];
|
||||
return self;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue