diff --git a/ChangeLog b/ChangeLog index ee580c7d..40884573 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-08-01 07:59 Gregory John Casamento + + * GormCore/GormClassInspector.m: Return an autoreleased copy of the + class name from _currentClass. + 2005-08-01 05:45 Gregory John Casamento * GormCore/GormClassInspector.m: Remove dopy code from _currentClass. diff --git a/GormCore/GormClassInspector.m b/GormCore/GormClassInspector.m index 64f2b3ae..2c064553 100644 --- a/GormCore/GormClassInspector.m +++ b/GormCore/GormClassInspector.m @@ -657,7 +657,7 @@ objectValueForTableColumn: (NSTableColumn *)tc - (NSString *) _currentClass { - return [object className]; + return AUTORELEASE([[object className] copy]); } - (void) handleNotification: (NSNotification *)notification