diff options
author | Alon Levy <alevy@redhat.com> | 2012-06-27 12:07:16 +0300 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-07-15 19:12:07 +0200 |
commit | 203f579fed5e0c8a9970bfabebc84c7d84578ee5 (patch) | |
tree | 6b932908de4a8270056d4ba1a9fc1182adcdb6c9 /src | |
parent | 5706a3765bead75999f6d0ca0b17fed6c30ad7ef (diff) |
spiceqxl_inputs: don't hide the pointer global typedef
Diffstat (limited to 'src')
-rw-r--r-- | src/spiceqxl_inputs.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/spiceqxl_inputs.c b/src/spiceqxl_inputs.c index 62ef19f..898ef40 100644 --- a/src/spiceqxl_inputs.c +++ b/src/spiceqxl_inputs.c @@ -285,7 +285,7 @@ static const SpiceMouseInterface mouse_interface = { static void tablet_set_logical_size(SpiceTabletInstance* sin, int width, int height) { - XSpicePointer *pointer = container_of(sin, XSpicePointer, tablet); + XSpicePointer *spice_pointer = container_of(sin, XSpicePointer, tablet); if (height < 16) { height = 16; @@ -293,23 +293,23 @@ static void tablet_set_logical_size(SpiceTabletInstance* sin, int width, int hei if (width < 16) { width = 16; } - pointer->width = width; - pointer->height = height; + spice_pointer->width = width; + spice_pointer->height = height; } static void tablet_position(SpiceTabletInstance* sin, int x, int y, uint32_t buttons_state) { - XSpicePointer *pointer = container_of(sin, XSpicePointer, tablet); + XSpicePointer *spice_pointer = container_of(sin, XSpicePointer, tablet); // TODO: don't ignore buttons_state - xf86PostMotionEvent(pointer->pInfo->dev, 1, 0, 2, x, y); + xf86PostMotionEvent(spice_pointer->pInfo->dev, 1, 0, 2, x, y); } static void tablet_buttons(SpiceTabletInstance *sin, uint32_t buttons_state) { - XSpicePointer *pointer = container_of(sin, XSpicePointer, tablet); + XSpicePointer *spice_pointer = container_of(sin, XSpicePointer, tablet); static uint32_t old_buttons_state = 0; int i; @@ -324,7 +324,7 @@ static void tablet_buttons(SpiceTabletInstance *sin, for (i = 0; i < BUTTONS; i++) { if ((buttons_state ^ old_buttons_state) & (1 << i)) { int action = (buttons_state & (1 << i)); - xf86PostButtonEvent(pointer->pInfo->dev, 0, i + 1, action, 0, 0); + xf86PostButtonEvent(spice_pointer->pInfo->dev, 0, i + 1, action, 0, 0); } } old_buttons_state = buttons_state; @@ -372,13 +372,13 @@ XSpiceKeyboardPreInit(InputDriverPtr drv, InputInfoPtr pInfo, int flags) static int XSpicePointerPreInit(InputDriverPtr drv, InputInfoPtr pInfo, int flags) { - XSpicePointer *pointer; + XSpicePointer *spice_pointer; - pointer = calloc(sizeof(*pointer), 1); - pointer->mouse.base.sif = &mouse_interface.base; - pointer->tablet.base.sif = &tablet_interface.base; - pointer->absolute = TRUE; - pointer->pInfo = pInfo; + spice_pointer = calloc(sizeof(*spice_pointer), 1); + spice_pointer->mouse.base.sif = &mouse_interface.base; + spice_pointer->tablet.base.sif = &tablet_interface.base; + spice_pointer->absolute = TRUE; + spice_pointer->pInfo = pInfo; pInfo->private = NULL; pInfo->type_name = "UNKNOWN"; @@ -386,7 +386,7 @@ XSpicePointerPreInit(InputDriverPtr drv, InputInfoPtr pInfo, int flags) pInfo->read_input = NULL; pInfo->switch_mode = NULL; - spice_server_add_interface(xspice_get_spice_server(), &pointer->tablet.base); + spice_server_add_interface(xspice_get_spice_server(), &spice_pointer->tablet.base); return Success; } |