Remove *error from solid fill constructor
authorSoren Sandmann Pedersen <ssp@dhcp83-218.boston.redhat.com>
Wed, 9 May 2007 15:22:56 +0000 (11:22 -0400)
committerSoren Sandmann Pedersen <ssp@dhcp83-218.boston.redhat.com>
Wed, 9 May 2007 15:22:56 +0000 (11:22 -0400)
pixman/pixman-image.c
pixman/pixman.h

index 1ac92fd..e0c98e6 100644 (file)
@@ -131,8 +131,7 @@ pixman_image_unref (pixman_image_t *image)
 
 /* Constructors */
 pixman_image_t *
-pixman_image_create_solid_fill (pixman_color_t *color,
-                               int            *error)
+pixman_image_create_solid_fill (pixman_color_t *color)
 {
     pixman_image_t *img = allocate_image();
     if (!img)
index 8cab2df..4157b27 100644 (file)
@@ -380,8 +380,7 @@ typedef enum {
 } pixman_format_code_t;
 
 /* Constructors */
-pixman_image_t *pixman_image_create_solid_fill       (pixman_color_t               *color,
-                                                     int                          *error);
+pixman_image_t *pixman_image_create_solid_fill       (pixman_color_t               *color);
 pixman_image_t *pixman_image_create_linear_gradient  (pixman_point_fixed_t         *p1,
                                                      pixman_point_fixed_t         *p2,
                                                      const pixman_gradient_stop_t *stops,