binding-pool: Use the correct marshaller

This commit is contained in:
Ole André Vadla Ravnås 2010-10-09 23:07:26 +02:00 committed by Emmanuele Bassi
parent c792431538
commit 276acf5854
2 changed files with 5 additions and 5 deletions

View File

@ -510,7 +510,7 @@ clutter_binding_pool_install_action (ClutterBindingPool *pool,
{
GClosureMarshal marshal;
marshal = _clutter_marshal_BOOLEAN__STRING_UINT_ENUM;
marshal = _clutter_marshal_BOOLEAN__STRING_UINT_FLAGS;
g_closure_set_marshal (closure, marshal);
}
@ -576,7 +576,7 @@ clutter_binding_pool_install_closure (ClutterBindingPool *pool,
{
GClosureMarshal marshal;
marshal = _clutter_marshal_BOOLEAN__STRING_UINT_ENUM;
marshal = _clutter_marshal_BOOLEAN__STRING_UINT_FLAGS;
g_closure_set_marshal (closure, marshal);
}
@ -644,7 +644,7 @@ clutter_binding_pool_override_action (ClutterBindingPool *pool,
{
GClosureMarshal marshal;
marshal = _clutter_marshal_BOOLEAN__STRING_UINT_ENUM;
marshal = _clutter_marshal_BOOLEAN__STRING_UINT_FLAGS;
g_closure_set_marshal (closure, marshal);
}
}
@ -704,7 +704,7 @@ clutter_binding_pool_override_closure (ClutterBindingPool *pool,
{
GClosureMarshal marshal;
marshal = _clutter_marshal_BOOLEAN__STRING_UINT_ENUM;
marshal = _clutter_marshal_BOOLEAN__STRING_UINT_FLAGS;
g_closure_set_marshal (closure, marshal);
}
}

View File

@ -1,5 +1,5 @@
BOOLEAN:BOXED
BOOLEAN:STRING,UINT,ENUM
BOOLEAN:STRING,UINT,FLAGS
BOXED:UINT,UINT
DOUBLE:VOID
UINT:VOID