crude KVO setter for structs

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35324 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2012-07-27 16:48:49 +00:00
parent 52dbdbcf0e
commit e357aab701
8 changed files with 156 additions and 45 deletions

View file

@ -71,6 +71,7 @@
- (void) dealloc
{
DESTROY(frame);
if (size > 0)
{
#if defined(HAVE_FFI_PREP_CLOSURE_LOC)
@ -173,6 +174,11 @@
#endif
#endif
}
- (void) setFrame: (id)aFrame
{
ASSIGN(frame, aFrame);
}
@end
static Class NSInvocation_abstract_class;