diff options
author | Sophie Herold <sophie@hemio.de> | 2022-05-11 14:19:39 +0200 |
---|---|---|
committer | Sophie Herold <sophie@hemio.de> | 2022-05-11 18:16:29 +0200 |
commit | a546ae32d773a26f2f329f237e94bef74db6cce1 (patch) | |
tree | 2ae64ca0eee53ad0c73ec845ed9734c1df91b95d /gtk/gtklayoutchild.c | |
parent | 9536eb654b15b2a906d4b63bbb9bb56a81e0a146 (diff) | |
download | gtk+-a546ae32d773a26f2f329f237e94bef74db6cce1.tar.gz |
Remove all nicks and blurbs from param specs
Those property features don't seem to be in use anywhere.
They are redundant since the docs cover the same information
and more. They also created unnecessary translation work.
Closes #4904
Diffstat (limited to 'gtk/gtklayoutchild.c')
-rw-r--r-- | gtk/gtklayoutchild.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gtk/gtklayoutchild.c b/gtk/gtklayoutchild.c index b04a37bea1..0b83f15ae1 100644 --- a/gtk/gtklayoutchild.c +++ b/gtk/gtklayoutchild.c @@ -123,9 +123,7 @@ gtk_layout_child_class_init (GtkLayoutChildClass *klass) * The layout manager that created the `GtkLayoutChild` instance. */ layout_child_properties[PROP_LAYOUT_MANAGER] = - g_param_spec_object ("layout-manager", - "Layout Manager", - "The layout manager that created this object", + g_param_spec_object ("layout-manager", NULL, NULL, GTK_TYPE_LAYOUT_MANAGER, GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); @@ -136,9 +134,7 @@ gtk_layout_child_class_init (GtkLayoutChildClass *klass) * The widget that is associated to the `GtkLayoutChild` instance. */ layout_child_properties[PROP_CHILD_WIDGET] = - g_param_spec_object ("child-widget", - "Child Widget", - "The child widget that is associated to this object", + g_param_spec_object ("child-widget", NULL, NULL, GTK_TYPE_WIDGET, GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); |