Fix memory leak in NSBox

This commit is contained in:
williameveretteggplant 2022-02-11 16:09:35 -07:00 committed by GitHub
parent f5ebdcd1d2
commit db5ad42d8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,6 +98,8 @@
- (void) dealloc
{
TEST_RELEASE(_border_color);
TEST_RELEASE(_fill_color);
TEST_RELEASE(_cell);
[super dealloc];
}