Swap height and width arguments to atk_image_get_image_size Swap height
[platform/upstream/atk.git] / atk / atkimage.h
index 4e02c90..24e0b08 100755 (executable)
@@ -53,8 +53,8 @@ struct _AtkImageIface
                                                   AtkCoordType          coord_type);
   G_CONST_RETURN gchar* ( *get_image_description) (AtkImage              *image);
   void                  ( *get_image_size)        (AtkImage              *image,
-                                                   gint                  *height,
-                                                   gint                  *width);
+                                                   gint                  *width,
+                                                   gint                  *height);
   gboolean              ( *set_image_description) (AtkImage              *image,
                                                    const gchar           *description);
 };
@@ -64,8 +64,8 @@ GType  atk_image_get_type             (void);
 G_CONST_RETURN gchar* atk_image_get_image_description (AtkImage   *image);
 
 void     atk_image_get_image_size        (AtkImage           *image,
-                                          gint               *height,
-                                          gint               *width);
+                                          gint               *width,
+                                          gint               *height);
 
 gboolean atk_image_set_image_description (AtkImage           *image,
                                           const gchar       *description);