/////////////////////////////////////////////////////////////////////////////
-// Name: cocoa/ObjcRef.mm
+// Name: src/cocoa/ObjcRef.mm
// Purpose: wxObjcAutoRefBase implementation
// Author: David Elliott
// Modified by:
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];
}