Search Results

6
votes

How do I fix my application from leaking when using Qt 4.5?

Generally, when you see this problem in your code, you bracket the offending code block with NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; before and [pool release] …