Update of bug #13031 (project gnustep):

                  Status:                    None => Works For Me           
             Assigned to:                    None => fedor                  

    _______________________________________________________

Follow-up Comment #1:

I've tried this on YDL 3.0 and it works fine for me with the latest release
and also CVS versions of GNUstep, also with several other architectures (with
different byte orders). Below is the test I used. Maybe there is something
more specific I need to do to make it (not) work?

#include <Foundation/Foundation.h>
#include <AppKit/AppKit.h>

int main (int argc, char *argv[])
{
CREATE_AUTORELEASE_POOL(pool);
NSColor * red = [NSColor redColor];
NSData * redAr = [NSArchiver archivedDataWithRootObject: red];
NSColor * redU = [NSUnarchiver unarchiveObjectWithData: redAr];

GSPrintf(stdout, @"Original red [EMAIL PROTECTED]", red);
GSPrintf(stdout, @"New red [EMAIL PROTECTED]", redU);

[pool release];
return 0;
}


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=13031>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/



_______________________________________________
Bug-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnustep

Reply via email to