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/gtkwindowhandle.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/gtkwindowhandle.c')
-rw-r--r-- | gtk/gtkwindowhandle.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk/gtkwindowhandle.c b/gtk/gtkwindowhandle.c index d0ba7fe424..af0f8adb99 100644 --- a/gtk/gtkwindowhandle.c +++ b/gtk/gtkwindowhandle.c @@ -533,9 +533,7 @@ gtk_window_handle_class_init (GtkWindowHandleClass *klass) * The child widget. */ props[PROP_CHILD] = - g_param_spec_object ("child", - P_("Child"), - P_("The child widget"), + g_param_spec_object ("child", NULL, NULL, GTK_TYPE_WIDGET, GTK_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY); |