mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
deprecates some gnustep runtime wrappers
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29697 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
80be6b9067
commit
8769dd8b6f
39 changed files with 381 additions and 333 deletions
|
@ -146,7 +146,7 @@ initSerializerInfo(_NSSerializerInfo* info, NSMutableData *d, BOOL u)
|
|||
{
|
||||
Class c;
|
||||
|
||||
c = GSObjCClass(d);
|
||||
c = object_getClass(d);
|
||||
info->data = d;
|
||||
info->appImp = (void (*)(NSData*,SEL,const void*,unsigned))get_imp(c, appSel);
|
||||
info->datImp = (void* (*)(NSMutableData*,SEL))get_imp(c, datSel);
|
||||
|
@ -180,7 +180,7 @@ serializeToInfo(id object, _NSSerializerInfo* info)
|
|||
format: @"Class (%@) in property list - expected instance",
|
||||
[object description]];
|
||||
}
|
||||
c = GSObjCClass(object);
|
||||
c = object_getClass(object);
|
||||
|
||||
if (GSObjCIsKindOf(c, StringClass)
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue