mirror of
https://github.com/brl/mutter.git
synced 2024-12-25 20:32:16 +00:00
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,
|
void clutter_table_layout_set_span (ClutterTableLayout *layout,
|
||||||
ClutterActor *actor,
|
ClutterActor *actor,
|
||||||
gint column_span,
|
gint row_span,
|
||||||
gint row_span);
|
gint column_span);
|
||||||
void clutter_table_layout_get_span (ClutterTableLayout *layout,
|
void clutter_table_layout_get_span (ClutterTableLayout *layout,
|
||||||
ClutterActor *actor,
|
ClutterActor *actor,
|
||||||
gint *column_span,
|
gint *column_span,
|
||||||
|
Loading…
Reference in New Issue
Block a user