From 9789bfc69e89648820d856c7b76d31966655d144 Mon Sep 17 00:00:00 2001 From: Matthew Allum Date: Wed, 6 Jun 2007 14:27:52 +0000 Subject: [PATCH] 2007-06-06 Matthew Allum * clutter/clutter-texture.c: * clutter/clutter-texture.h: Fix GError Args. --- clutter/clutter-texture.c | 6 +++--- clutter/clutter-texture.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/clutter/clutter-texture.c b/clutter/clutter-texture.c index 959c991..e8e6952 100644 --- a/clutter/clutter-texture.c +++ b/clutter/clutter-texture.c @@ -1167,7 +1167,7 @@ clutter_texture_set_from_rgb_data (ClutterTexture *texture, gint rowstride, gint bpp, ClutterTextureFlags flags, - GError *error) + GError **error) { ClutterTexturePrivate *priv; gboolean texture_dirty = TRUE; @@ -1298,7 +1298,7 @@ clutter_texture_set_from_yuv_data (ClutterTexture *texture, gint width, gint height, ClutterTextureFlags flags, - GError *error) + GError **error) { #if 0 gboolean texture_dirty = TRUE; @@ -1391,7 +1391,7 @@ clutter_texture_set_from_yuv_data (ClutterTexture *texture, gboolean clutter_texture_set_pixbuf (ClutterTexture *texture, GdkPixbuf *pixbuf, - GError *error) + GError **error) { ClutterTexturePrivate *priv; diff --git a/clutter/clutter-texture.h b/clutter/clutter-texture.h index a89fa8f..d249ba4 100644 --- a/clutter/clutter-texture.h +++ b/clutter/clutter-texture.h @@ -87,16 +87,16 @@ gboolean clutter_texture_set_from_rgb_data (ClutterTexture *texture, gint rowstride, gint bpp, ClutterTextureFlags flags, - GError *error); + GError **error); gboolean clutter_texture_set_from_yuv_data (ClutterTexture *texture, const guchar *data, gint width, gint height, ClutterTextureFlags flags, - GError *error); + GError **error); gboolean clutter_texture_set_pixbuf (ClutterTexture *texture, GdkPixbuf *pixbuf, - GError *error); + GError **error); GdkPixbuf * clutter_texture_get_pixbuf (ClutterTexture *texture); void clutter_texture_get_base_size (ClutterTexture *texture, gint *width, -- 2.7.4