mirror of
https://github.com/brl/mutter.git
synced 2024-12-26 04:42:14 +00:00
device: Remove unused is_default member
The is_default member of the InputDevice structure was not used anywhere.
This commit is contained in:
parent
74dbcede25
commit
e0b8d63159
@ -118,8 +118,6 @@ struct _ClutterInputDevice
|
|||||||
guint32 previous_time;
|
guint32 previous_time;
|
||||||
gint previous_button_number;
|
gint previous_button_number;
|
||||||
ClutterModifierType previous_state;
|
ClutterModifierType previous_state;
|
||||||
|
|
||||||
guint is_default : 1;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _ClutterStageManager
|
struct _ClutterStageManager
|
||||||
|
@ -179,12 +179,7 @@ clutter_x11_register_input_devices (ClutterBackendX11 *backend)
|
|||||||
n_events = _clutter_input_device_x11_construct (device, backend);
|
n_events = _clutter_input_device_x11_construct (device, backend);
|
||||||
|
|
||||||
if (info->use == IsXExtensionPointer && n_events > 0)
|
if (info->use == IsXExtensionPointer && n_events > 0)
|
||||||
{
|
|
||||||
/* mark it as a default */
|
|
||||||
device->is_default = TRUE;
|
|
||||||
|
|
||||||
have_an_xpointer = TRUE;
|
have_an_xpointer = TRUE;
|
||||||
}
|
|
||||||
|
|
||||||
/* add it to a temporary list; we don't add the device
|
/* add it to a temporary list; we don't add the device
|
||||||
* straight to the device manager because the XInput
|
* straight to the device manager because the XInput
|
||||||
@ -227,7 +222,7 @@ default_device:
|
|||||||
* - we do not have the XInput extension
|
* - we do not have the XInput extension
|
||||||
* - we do not have a XInput pointer device
|
* - we do not have a XInput pointer device
|
||||||
*
|
*
|
||||||
* we register two default core devices, one for the pointer
|
* we register two default devices, one for the pointer
|
||||||
* and one for the keyboard
|
* and one for the keyboard
|
||||||
*/
|
*/
|
||||||
if (!have_an_xpointer)
|
if (!have_an_xpointer)
|
||||||
@ -240,7 +235,6 @@ default_device:
|
|||||||
"device-type", CLUTTER_POINTER_DEVICE,
|
"device-type", CLUTTER_POINTER_DEVICE,
|
||||||
"is-core", TRUE,
|
"is-core", TRUE,
|
||||||
NULL);
|
NULL);
|
||||||
d->is_default = TRUE;
|
|
||||||
CLUTTER_NOTE (BACKEND, "Added core pointer device %d", d->id);
|
CLUTTER_NOTE (BACKEND, "Added core pointer device %d", d->id);
|
||||||
_clutter_device_manager_add_device (manager, d);
|
_clutter_device_manager_add_device (manager, d);
|
||||||
backend->core_pointer = d;
|
backend->core_pointer = d;
|
||||||
@ -251,7 +245,6 @@ default_device:
|
|||||||
"device-type", CLUTTER_KEYBOARD_DEVICE,
|
"device-type", CLUTTER_KEYBOARD_DEVICE,
|
||||||
"is-core", TRUE,
|
"is-core", TRUE,
|
||||||
NULL);
|
NULL);
|
||||||
d->is_default = TRUE;
|
|
||||||
CLUTTER_NOTE (BACKEND, "Added core keyboard device %d", d->id);
|
CLUTTER_NOTE (BACKEND, "Added core keyboard device %d", d->id);
|
||||||
_clutter_device_manager_add_device (manager, d);
|
_clutter_device_manager_add_device (manager, d);
|
||||||
backend->core_keyboard = d;
|
backend->core_keyboard = d;
|
||||||
|
Loading…
Reference in New Issue
Block a user