[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/driver/xserver-xorg-input-libinput][upstream-unstable] 3 commits: Remove unused assignment



Title: GitLab

Timo Aaltonen pushed to branch upstream-unstable at X Strike Force / driver / xserver-xorg-input-libinput

Commits:

2 changed files:

Changes:

  • configure.ac
    ... ... @@ -23,7 +23,7 @@
    23 23
     # Initialize Autoconf
    
    24 24
     AC_PREREQ([2.60])
    
    25 25
     AC_INIT([xf86-input-libinput],
    
    26
    -        [0.28.0],
    
    26
    +        [0.28.1],
    
    27 27
             [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
    
    28 28
             [xf86-input-libinput])
    
    29 29
     AC_CONFIG_SRCDIR([Makefile.am])
    

  • src/xf86libinput.c
    ... ... @@ -1705,7 +1705,7 @@ xf86libinput_handle_touch(InputInfoPtr pInfo,
    1705 1705
     	if ((driver_data->capabilities & CAP_TOUCH) == 0)
    
    1706 1706
     		return;
    
    1707 1707
     
    
    1708
    -	slot = libinput_event_touch_get_slot(event);
    
    1708
    +	slot = libinput_event_touch_get_seat_slot(event);
    
    1709 1709
     
    
    1710 1710
     	switch (event_type) {
    
    1711 1711
     		case LIBINPUT_EVENT_TOUCH_DOWN:
    
    ... ... @@ -2092,7 +2092,7 @@ static inline DeviceIntPtr
    2092 2092
     xf86libinput_find_device_for_tool(InputInfoPtr pInfo,
    
    2093 2093
     				  struct libinput_tablet_tool *tool)
    
    2094 2094
     {
    
    2095
    -	struct xf86libinput *dev = pInfo->private;
    
    2095
    +	struct xf86libinput *dev;
    
    2096 2096
     	struct xf86libinput *driver_data = pInfo->private;
    
    2097 2097
     	struct xf86libinput_device *shared_device = driver_data->shared_device;
    
    2098 2098
     	uint64_t serial = libinput_tablet_tool_get_serial(tool);
    


  • Reply to: