clutter: Drop CLUTTER_PARAM_* defines

They are not used every where making the codebase very incosistent
So just drop the current usages

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3437>
This commit is contained in:
Bilal Elmoussaoui
2023-12-02 10:09:00 +01:00
committed by Marge Bot
parent ef8b2f2893
commit 3f09a86e7a
36 changed files with 378 additions and 177 deletions

View File

@ -1095,11 +1095,13 @@ meta_virtual_input_device_native_class_init (MetaVirtualInputDeviceNativeClass *
virtual_input_device_class->notify_touch_up = meta_virtual_input_device_native_notify_touch_up;
obj_props[PROP_SEAT] = g_param_spec_pointer ("seat", NULL, NULL,
CLUTTER_PARAM_READWRITE |
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS |
G_PARAM_CONSTRUCT_ONLY);
obj_props[PROP_SLOT_BASE] = g_param_spec_uint ("slot-base", NULL, NULL,
0, G_MAXUINT, 0,
CLUTTER_PARAM_READWRITE |
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS |
G_PARAM_CONSTRUCT_ONLY);
g_object_class_install_properties (object_class, PROP_LAST, obj_props);
}