mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-24 22:46:15 +01:00
GSimpleAction: fix some whitespace fail
This commit is contained in:
parent
342e2faa29
commit
ab0da3c282
@ -518,7 +518,7 @@ GSimpleAction *
|
||||
g_simple_action_new (const gchar *name,
|
||||
const GVariantType *parameter_type)
|
||||
{
|
||||
return (GSimpleAction*) g_object_new (G_TYPE_SIMPLE_ACTION,
|
||||
return g_object_new (G_TYPE_SIMPLE_ACTION,
|
||||
"name", name,
|
||||
"parameter-type", parameter_type,
|
||||
NULL);
|
||||
@ -546,7 +546,7 @@ g_simple_action_new_stateful (const gchar *name,
|
||||
const GVariantType *parameter_type,
|
||||
GVariant *state)
|
||||
{
|
||||
return (GSimpleAction*) g_object_new (G_TYPE_SIMPLE_ACTION,
|
||||
return g_object_new (G_TYPE_SIMPLE_ACTION,
|
||||
"name", name,
|
||||
"parameter-type", parameter_type,
|
||||
"state", state,
|
||||
|
Loading…
Reference in New Issue
Block a user