Fix a memory leak in GLFWContentView

This commit is contained in:
Mario Dorn 2015-11-14 02:50:35 +01:00
parent 98a83b362f
commit 388ad3dd97

View File

@ -328,6 +328,7 @@ static const NSRange kEmptyRange = {NSNotFound, 0};
- (void)dealloc
{
[trackingArea release];
[markedText release];
[super dealloc];
}