diff --git a/ChangeLog b/ChangeLog index 437a76fb0..b85d0b356 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,13 +1,19 @@ +2008-06-26 Emmanuele Bassi + + * clutter/osx/clutter-backend-osx.c: + (clutter_backend_osx_get_display_size): Fix the allocation pool + macro name. + 2008-06-26 Matthew Allum * clutter/glx/clutter-glx-texture-pixmap.c: - Move the gl extension probe into the regular object init() rather than - class_init. Should be a little safer. + Move the gl extension probe into the regular object init() rather than + class_init. Should be a little safer. 2008-06-26 Matthew Allum * tests/test-pixmap.c: (main): - Use strtol on arg as to take hex values. Tweak from James Ketrenos + Use strtol on arg as to take hex values. Tweak from James Ketrenos 2008-06-25 Emmanuele Bassi diff --git a/clutter/osx/clutter-backend-osx.c b/clutter/osx/clutter-backend-osx.c index 865af680b..80573c54b 100644 --- a/clutter/osx/clutter-backend-osx.c +++ b/clutter/osx/clutter-backend-osx.c @@ -176,7 +176,7 @@ clutter_backend_osx_get_display_size (ClutterBackend *backend, int display_width, display_height; NSArray *array; - CLUTTER_OSX_ALLOC_POOL; + CLUTTER_OSX_POOL_ALLOC(); array = [NSScreen screens]; @@ -190,7 +190,7 @@ clutter_backend_osx_get_display_size (ClutterBackend *backend, display_height += rect.size.height; } - CLUTTER_OSX_RELEASE_POOL; + CLUTTER_OSX_POOL_RELEASE(); if (width) *width = display_width;