Remove all nicks and blurbs from param specs

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
This commit is contained in:
Sophie Herold
2023-04-28 01:59:26 +02:00
committed by Philip Withnall
parent f3aebf0c15
commit 0d268c4825
94 changed files with 306 additions and 893 deletions

View File

@@ -258,9 +258,7 @@ g_win32_input_stream_class_init (GWin32InputStreamClass *klass)
* Since: 2.26
*/
props[PROP_HANDLE] =
g_param_spec_pointer ("handle",
P_("File handle"),
P_("The file handle to read from"),
g_param_spec_pointer ("handle", NULL, NULL,
G_PARAM_READABLE |
G_PARAM_WRITABLE |
G_PARAM_CONSTRUCT_ONLY |
@@ -274,9 +272,7 @@ g_win32_input_stream_class_init (GWin32InputStreamClass *klass)
* Since: 2.26
*/
props[PROP_CLOSE_HANDLE] =
g_param_spec_boolean ("close-handle",
P_("Close file handle"),
P_("Whether to close the file handle when the stream is closed"),
g_param_spec_boolean ("close-handle", NULL, NULL,
TRUE,
G_PARAM_READABLE |
G_PARAM_WRITABLE |