mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 15:03:39 +02:00
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:
committed by
Philip Withnall
parent
f3aebf0c15
commit
0d268c4825
@@ -179,9 +179,7 @@ g_io_stream_class_init (GIOStreamClass *klass)
|
||||
* Since: 2.22
|
||||
*/
|
||||
g_object_class_install_property (gobject_class, PROP_CLOSED,
|
||||
g_param_spec_boolean ("closed",
|
||||
P_("Closed"),
|
||||
P_("Is the stream closed"),
|
||||
g_param_spec_boolean ("closed", NULL, NULL,
|
||||
FALSE,
|
||||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
@@ -193,9 +191,7 @@ g_io_stream_class_init (GIOStreamClass *klass)
|
||||
* Since: 2.22
|
||||
*/
|
||||
g_object_class_install_property (gobject_class, PROP_INPUT_STREAM,
|
||||
g_param_spec_object ("input-stream",
|
||||
P_("Input stream"),
|
||||
P_("The GInputStream to read from"),
|
||||
g_param_spec_object ("input-stream", NULL, NULL,
|
||||
G_TYPE_INPUT_STREAM,
|
||||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
@@ -207,9 +203,7 @@ g_io_stream_class_init (GIOStreamClass *klass)
|
||||
* Since: 2.22
|
||||
*/
|
||||
g_object_class_install_property (gobject_class, PROP_OUTPUT_STREAM,
|
||||
g_param_spec_object ("output-stream",
|
||||
P_("Output stream"),
|
||||
P_("The GOutputStream to write to"),
|
||||
g_param_spec_object ("output-stream", NULL, NULL,
|
||||
G_TYPE_OUTPUT_STREAM,
|
||||
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||
}
|
||||
|
Reference in New Issue
Block a user