Fix the ordering of the arguments for clutter_table_layout_set_span
The order of the row_span and column_span arguments was different in the declaration from that in the definition. This was causing the gtk-doc to also have the wrong order.
This commit is contained in:
parent
760fa8efd6
commit
66104f5112
@ -114,8 +114,8 @@ guint clutter_table_layout_get_row_spacing (ClutterTableLayo
|
||||
|
||||
void clutter_table_layout_set_span (ClutterTableLayout *layout,
|
||||
ClutterActor *actor,
|
||||
gint column_span,
|
||||
gint row_span);
|
||||
gint row_span,
|
||||
gint column_span);
|
||||
void clutter_table_layout_get_span (ClutterTableLayout *layout,
|
||||
ClutterActor *actor,
|
||||
gint *column_span,
|
||||
|
Loading…
Reference in New Issue
Block a user