1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-31 11:35:24 +01:00

Remove extraneous NSAutoreleasePool, we create one in MacMain() now.

This commit is contained in:
John Maguire 2010-04-23 13:32:27 +00:00
parent 7c4beddbe6
commit c446ef7dad

View File

@ -69,13 +69,11 @@
class OSD::GrowlNotificationWrapper {
public:
GrowlNotificationWrapper() {
pool_ = [[NSAutoreleasePool alloc] init];
growl_interface_ = [[GrowlInterface alloc] init];
}
~GrowlNotificationWrapper() {
[growl_interface_ release];
[pool_ release];
}
void ShowMessage(const QString& summary,