mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
add release implmentation
This commit is contained in:
parent
13ae5fdb54
commit
3d711b5672
2 changed files with 18 additions and 0 deletions
|
@ -48,6 +48,16 @@ static Class pathComponentCellClass;
|
|||
}
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
RELEASE(_backgroundColor);
|
||||
RELEASE(_placeholderAttributedString);
|
||||
RELEASE(_allowedTypes);
|
||||
RELEASE(_url);
|
||||
RELEASE(_pathComponentCells);
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
- (void)mouseEntered:(NSEvent *)event
|
||||
withFrame:(NSRect)frame
|
||||
inView:(NSView *)view
|
||||
|
|
|
@ -72,5 +72,13 @@
|
|||
RELEASE(attrTitle);
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
RELEASE(_attributedTitle);
|
||||
RELEASE(_image);
|
||||
RELEASE(_url);
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
|
|
Loading…
Reference in a new issue