Merge pull request #1 from williameveretteggplant/patch-1

Fix memory leak in NSBox
This commit is contained in:
williameveretteggplant 2022-02-11 16:17:11 -07:00 committed by GitHub
commit 3190ce4363
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];
}