"Automated configuration bump, release for firefox 3.0b3rc3"
[mozilla-central.git] / gfx / thebes / test / gfxTestCocoaHelper.mm
blobd21bf8a2675a7eeedc20f25651a0fc6de847503a
2 #import <Cocoa/Cocoa.h>
4 #include "gfxTestCocoaHelper.h"
6 static NSAutoreleasePool *sPool = NULL;
8 void
9 CocoaPoolInit() {
10   if (sPool)
11     [sPool release];
12   sPool = [[NSAutoreleasePool alloc] init];
15 void
16 CocoaPoolRelease() {
17   [sPool release];
18   sPool = NULL;