]> Pileus Git - ~andy/gtk/commitdiff
_gdk_pixbuf_lock now returns a gboolean.
authorManish Singh <yosh@gimp.org>
Tue, 16 Nov 2004 03:01:57 +0000 (03:01 +0000)
committerManish Singh <yosh@src.gnome.org>
Tue, 16 Nov 2004 03:01:57 +0000 (03:01 +0000)
Mon Nov 15 18:58:22 2004  Manish Singh  <yosh@gimp.org>

        * gdk-pixbuf-private.h: _gdk_pixbuf_lock now returns a gboolean.

        * abicheck.sh: don't hardcode lengths for cut, instead split on
        the third field.

gdk-pixbuf/ChangeLog
gdk-pixbuf/abicheck.sh
gdk-pixbuf/gdk-pixbuf-private.h

index 454881041d68763d1643c4a136b820fd79626d11..99a59e823326681677ec28c950a0ea4c87899088 100644 (file)
@@ -1,3 +1,10 @@
+Mon Nov 15 18:58:22 2004  Manish Singh  <yosh@gimp.org>
+
+       * gdk-pixbuf-private.h: _gdk_pixbuf_lock now returns a gboolean.
+
+       * abicheck.sh: don't hardcode lengths for cut, instead split on
+       the third field.
+
 2004-11-15  Matthias Clasen  <mclasen@redhat.com>
 
        * gdk-pixbuf-animation.c: 
index 5932bb84bc7bc37e3e3f2ba9c314ec57273183bd..fe617da648a65e7697e9447c69d2d236c960243e 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
 cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' | sort > expected-abi
-nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -c12- | sort > actual-abi
+nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
 diff -u expected-abi actual-abi && rm expected-abi actual-abi
index 59053a99d1a928a59dd317ee573aa8fd27dd2537..9e48b32a5ddad16f15d3487d65f1d5166194afdf 100644 (file)
@@ -79,7 +79,7 @@ struct _GdkPixbufClass {
 
 #ifdef GDK_PIXBUF_ENABLE_BACKEND
 
-void _gdk_pixbuf_lock (GdkPixbufModule *image_module);
+gboolean _gdk_pixbuf_lock (GdkPixbufModule *image_module);
 void _gdk_pixbuf_unlock (GdkPixbufModule *image_module);
 
 GdkPixbufModule *_gdk_pixbuf_get_module (guchar *buffer, guint size,