2008-06-26 Emmanuele Bassi <ebassi@openedhand.com>
authorEmmanuele Bassi <ebassi@openedhand.com>
Thu, 26 Jun 2008 13:52:35 +0000 (13:52 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Thu, 26 Jun 2008 13:52:35 +0000 (13:52 +0000)
* clutter/osx/clutter-backend-osx.c:
(clutter_backend_osx_get_display_size): Fix the allocation pool
macro name.

ChangeLog
clutter/osx/clutter-backend-osx.c

index 437a76f..b85d0b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,13 +1,19 @@
+2008-06-26  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * clutter/osx/clutter-backend-osx.c:
+       (clutter_backend_osx_get_display_size): Fix the allocation pool
+       macro name.
+
 2008-06-26  Matthew Allum  <mallum@openedhand.com>
 
        * 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  <mallum@openedhand.com>
 
        * 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  <ebassi@openedhand.com>
 
index 865af68..80573c5 100644 (file)
@@ -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;