From e80f08b4b494d23b9cbeafe310191e8e71d736ee Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 12 Jul 2010 02:47:02 +0000 Subject: [PATCH] bitrot-- > work again (minus map features etc. tho) SVN revision: 50192 --- legacy/evas/src/modules/engines/xrender_x11/evas_engine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/evas/src/modules/engines/xrender_x11/evas_engine.c b/legacy/evas/src/modules/engines/xrender_x11/evas_engine.c index fcb4f0911d..20880d340d 100644 --- a/legacy/evas/src/modules/engines/xrender_x11/evas_engine.c +++ b/legacy/evas/src/modules/engines/xrender_x11/evas_engine.c @@ -115,7 +115,7 @@ struct _Render_Engine void (*gradient_type_set)(XR_Gradient *gr, char *name, char *params); void (*gradient_draw)(Xrender_Surface *rs, RGBA_Draw_Context *dc, XR_Gradient *gr, int x, int y, int w, int h); - XR_Image *(*image_load)(Ximage_Info *xinf, const char *file, const char *key, Evas_Image_Load_Opts *lo); + XR_Image *(*image_load)(Ximage_Info *xinf, const char *file, const char *key, Evas_Image_Load_Opts *lo, int *error); XR_Image *(*image_new_from_data)(Ximage_Info *xinf, int w, int h, void *data, int alpha, int cspace); XR_Image *(*image_new_from_copied_data)(Ximage_Info *xinf, int w, int h, void *data, int alpha, int cspace); XR_Image *(*image_new)(Ximage_Info *xinf, int w, int h); @@ -1202,7 +1202,7 @@ eng_image_load(void *data, const char *file, const char *key, int *error, Evas_I re = (Render_Engine *)data; *error = 0; - im = re->image_load(re->xinf, file, key, lo); + im = re->image_load(re->xinf, file, key, lo, error); return im; }