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

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



Title: GitLab

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

Commits:

3 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])
    

  • debian/changelog
    1
    +xserver-xorg-input-libinput (0.28.1-1) unstable; urgency=medium
    
    2
    +
    
    3
    +  * New upstream release.
    
    4
    +
    
    5
    + -- Timo Aaltonen <tjaalton@debian.org>  Tue, 16 Oct 2018 07:48:27 +0300
    
    6
    +
    
    1 7
     xserver-xorg-input-libinput (0.28.0-1) unstable; urgency=medium
    
    2 8
     
    
    3 9
       * New upstream release. (LP: #1786478)
    

  • 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: