mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
binding-pool: Use the correct marshaller
This commit is contained in:
parent
c792431538
commit
276acf5854
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
BOOLEAN:BOXED
|
||||
BOOLEAN:STRING,UINT,ENUM
|
||||
BOOLEAN:STRING,UINT,FLAGS
|
||||
BOXED:UINT,UINT
|
||||
DOUBLE:VOID
|
||||
UINT:VOID
|
||||
|
Loading…
Reference in New Issue
Block a user