mirror of
https://github.com/brl/mutter.git
synced 2025-06-14 01:09:30 +00:00
misc: Drop remaining nick/blurbs
Those were added again after we dropped their usage in the codebase Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3498>
This commit is contained in:

committed by
Marge Bot

parent
51904d1ec3
commit
9e4d1f51ee
@ -357,9 +357,7 @@ meta_barrier_class_init (MetaBarrierClass *klass)
|
||||
G_PARAM_CONSTRUCT_ONLY |
|
||||
G_PARAM_STATIC_STRINGS);
|
||||
obj_props[PROP_FLAGS] =
|
||||
g_param_spec_flags ("flags",
|
||||
"Flags",
|
||||
"Flags for manipulating barrier behavior",
|
||||
g_param_spec_flags ("flags", NULL, NULL,
|
||||
META_TYPE_BARRIER_FLAGS,
|
||||
META_BARRIER_FLAG_NONE,
|
||||
G_PARAM_READWRITE |
|
||||
|
@ -247,17 +247,13 @@ meta_thread_impl_class_init (MetaThreadImplClass *klass)
|
||||
object_class->finalize = meta_thread_impl_finalize;
|
||||
|
||||
obj_props[PROP_THREAD] =
|
||||
g_param_spec_object ("thread",
|
||||
"thread",
|
||||
"MetaThread",
|
||||
g_param_spec_object ("thread", NULL, NULL,
|
||||
META_TYPE_THREAD,
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_CONSTRUCT_ONLY |
|
||||
G_PARAM_STATIC_STRINGS);
|
||||
obj_props[PROP_MAIN_CONTEXT] =
|
||||
g_param_spec_boxed ("main-context",
|
||||
"main-context",
|
||||
"GMainContext",
|
||||
g_param_spec_boxed ("main-context", NULL, NULL,
|
||||
G_TYPE_MAIN_CONTEXT,
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_CONSTRUCT |
|
||||
|
@ -708,27 +708,21 @@ meta_thread_class_init (MetaThreadClass *klass)
|
||||
object_class->finalize = meta_thread_finalize;
|
||||
|
||||
obj_props[PROP_BACKEND] =
|
||||
g_param_spec_object ("backend",
|
||||
"backend",
|
||||
"MetaBackend",
|
||||
g_param_spec_object ("backend", NULL, NULL,
|
||||
META_TYPE_BACKEND,
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_CONSTRUCT_ONLY |
|
||||
G_PARAM_STATIC_STRINGS);
|
||||
|
||||
obj_props[PROP_NAME] =
|
||||
g_param_spec_string ("name",
|
||||
"name",
|
||||
"Name of thread",
|
||||
g_param_spec_string ("name", NULL, NULL,
|
||||
NULL,
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_CONSTRUCT_ONLY |
|
||||
G_PARAM_STATIC_STRINGS);
|
||||
|
||||
obj_props[PROP_THREAD_TYPE] =
|
||||
g_param_spec_enum ("thread-type",
|
||||
"thread-type",
|
||||
"Type of thread",
|
||||
g_param_spec_enum ("thread-type", NULL, NULL,
|
||||
META_TYPE_THREAD_TYPE,
|
||||
META_THREAD_TYPE_KERNEL,
|
||||
G_PARAM_READWRITE |
|
||||
@ -736,9 +730,7 @@ meta_thread_class_init (MetaThreadClass *klass)
|
||||
G_PARAM_STATIC_STRINGS);
|
||||
|
||||
obj_props[PROP_WANTS_REALTIME] =
|
||||
g_param_spec_boolean ("wants-realtime",
|
||||
"wants-realtime",
|
||||
"Wants real-time thread scheduling",
|
||||
g_param_spec_boolean ("wants-realtime", NULL, NULL,
|
||||
FALSE,
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_CONSTRUCT_ONLY |
|
||||
|
Reference in New Issue
Block a user