summaryrefslogtreecommitdiff
path: root/gio/gcharsetconverter.c
diff options
context:
space:
mode:
authorSophie Herold <sophie@hemio.de>2023-04-28 01:59:26 +0200
committerSophie Herold <sophie@hemio.de>2023-04-28 02:17:36 +0200
commite02808020ffbe82ad14c9bca2f4a157aa2b1b691 (patch)
tree69152391d3693bb9437b5949afbf3a11b2f04b80 /gio/gcharsetconverter.c
parent473063383df0ec135fd86b75b6f7f1dd20a8e2aa (diff)
downloadglib-e02808020ffbe82ad14c9bca2f4a157aa2b1b691.tar.gz
Remove all nicks and blurbs from param specswip/sophie-h/remove-nick-blurb
Nicks and blurbs don't have any practical use for gio/gobject libraries. Leaving tests untouched since this features is still used by other libraries. Closes #2991
Diffstat (limited to 'gio/gcharsetconverter.c')
-rw-r--r--gio/gcharsetconverter.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/gio/gcharsetconverter.c b/gio/gcharsetconverter.c
index 499319999..9edab8a6c 100644
--- a/gio/gcharsetconverter.c
+++ b/gio/gcharsetconverter.c
@@ -161,25 +161,19 @@ g_charset_converter_class_init (GCharsetConverterClass *klass)
g_object_class_install_property (gobject_class,
PROP_TO_CHARSET,
- g_param_spec_string ("to-charset",
- P_("To Charset"),
- P_("The character encoding to convert to"),
+ g_param_spec_string ("to-charset", NULL, NULL,
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class,
PROP_FROM_CHARSET,
- g_param_spec_string ("from-charset",
- P_("From Charset"),
- P_("The character encoding to convert from"),
+ g_param_spec_string ("from-charset", NULL, NULL,
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class,
PROP_USE_FALLBACK,
- g_param_spec_boolean ("use-fallback",
- P_("Fallback enabled"),
- P_("Use fallback (of form \\<hexval>) for invalid bytes"),
+ g_param_spec_boolean ("use-fallback", NULL, NULL,
FALSE,
G_PARAM_READWRITE |
G_PARAM_CONSTRUCT |