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/gtkmagnifier.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/gtkmagnifier.c')
-rw-r--r-- | gtk/gtkmagnifier.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gtk/gtkmagnifier.c b/gtk/gtkmagnifier.c index 5b5b6ab7ac..7bf8b886d7 100644 --- a/gtk/gtkmagnifier.c +++ b/gtk/gtkmagnifier.c @@ -183,23 +183,17 @@ gtk_magnifier_class_init (GtkMagnifierClass *klass) g_object_class_install_property (object_class, PROP_INSPECTED, - g_param_spec_object ("inspected", - P_("Inspected"), - P_("Inspected widget"), + g_param_spec_object ("inspected", NULL, NULL, GTK_TYPE_WIDGET, G_PARAM_READWRITE)); g_object_class_install_property (object_class, PROP_MAGNIFICATION, - g_param_spec_double ("magnification", - P_("magnification"), - P_("magnification"), + g_param_spec_double ("magnification", NULL, NULL, 1, G_MAXDOUBLE, 1, G_PARAM_READWRITE)); g_object_class_install_property (object_class, PROP_RESIZE, - g_param_spec_boolean ("resize", - P_("resize"), - P_("resize"), + g_param_spec_boolean ("resize", NULL, NULL, FALSE, G_PARAM_READWRITE)); |