/////////////////////////////////////////////////////////////////////////////
-// Name: cocoa/ObjcRef.mm
+// Name: src/cocoa/ObjcRef.mm
// Purpose: wxObjcAutoRefBase implementation
// Author: David Elliott
// Modified by:
// Created: 2004/03/28
-// RCS-ID: $Id$
// Copyright: (c) 2004 David Elliott <dfe@cox.net>
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
return [obj retain];
}
-/*static*/ struct objc_object* wxObjcAutoRefBase::ObjcRelease(struct objc_object* obj)
+/*static*/ void wxObjcAutoRefBase::ObjcRelease(struct objc_object* obj)
{
- return [obj release];
+ [obj release];
}