[futurebasic] Re: [FB] NSTextView

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : December 2010 : Group Archive : Group : All Groups

From: Bernie <fblist.bw@...>
Date: Fri, 10 Dec 2010 12:13:02 +0000
Robert P wrote:

> - (void)dealloc
> {
>   [super dealloc];
>   [undoThing release];
> }

Constructive comment: I think it is recommended that [super dealloc] always be called last in a dealloc: method.

- (void)dealloc
{
  [undoThing release];
  [super dealloc];
}

Bernie