Signed-off-by: Peter Hutterer
---
test/touchpad.c | 15 +--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/test/touchpad.c b/test/touchpad.c
index 5c63202..28cf1f1 100644
--- a/test/touchpad.c
+++ b/test/touchpad.c
@@ -424,7 +424,7 @@ START_TEST(touchpad_scroll_natural
We simply don't have enough space on those touchpads to have an area carved
out for horizontal scrolling. Given that horizontal scrolling is rarely needed
anyway users of these touchpads will just have to cling to scroll bars or use
two-finger scrolling.
Exception are small clickpads because they
On Mon, Jul 11, 2016 at 05:13:36PM +0200, Carlos Garnacho wrote:
> The pad's interface is similar to the tool interface, a client is notified of
> the pad after the tablet_added event.
>
> The pad has three functionalities: buttons, rings and strips.
> Buttons are fairly straightforward, rings and
This interface allows disabling of screensaver/screenblanking on a
per-surface basis. As long as the surface remains visible and
non-occluded it blocks the screensaver, etc. from activating on the
output(s) that the surface is visible on.
To uninhibit, simply destroy the inhibitor object.
Signed
Previously weston_config_section_get_uint was serving dual purpose for
parsing both unsigned decimal integer values (ids, counts, seconds,
etc.) and hexadecimal values (colors), by relying on strtoul's
auto-detection mechanism.
However, this usage is unable to catch certain kinds of error
conditi
[With hexadecimal color values now handled via their own routine,
re-introduce the negative unsigned numbers fix.]
strtoul() has a side effect that when given a string representing a
negative number, it treats it as a high value hexadecimal. IOW,
strtoul("-42", &val) sets val to 0xffd6. This
On quinta-feira, 14 de julho de 2016 13:03:34 PDT Bryce Harrington wrote:
> + ret = strtol(str, &end, 10);
Here you made a cast from long to int, which may be a loss of data.
ret = strtol("4294967296", &end, 10);
Will produce no errno since it's in the valid range of long on LP64 s
On Thursday 2016-07-14 17:33, Emil Velikov wrote:
>
>The keypoint here is that one should _not_ need to uninstall
>libdb-4_5-devel in order to have libdb-4_8-devel and vice-versa.
>This is what parallel installability is all about (afaict).
It is indeed what it is about.
But is it _necessary_ to
On Thu, Jul 14, 2016 at 01:03:34PM -0700, Bryce Harrington wrote:
> Adds a safe strtol helper function, modeled loosely after Wayland
> scanner's strtouint. This encapsulates the various quirks of strtol
> behavior, and streamlines the interface to just handling base-10 numbers
> with a simple tru
Adds a safe strtol helper function, modeled loosely after Wayland
scanner's strtouint. This encapsulates the various quirks of strtol
behavior, and streamlines the interface to just handling base-10 numbers
with a simple true/false error indicator.
Signed-off-by: Bryce Harrington
---
Hi,
With
On Thu, Jul 14, 2016 at 09:16:41AM +0200, Quentin Glidic wrote:
> On 14/07/2016 04:01, Bryce Harrington wrote:
> >Previously weston_config_section_get_uint was serving dual purpose for
> >parsing both unsigned decimal integer values (ids, counts, seconds,
> >etc.) and hexadecimal values (colors),
On Thu, Jul 14, 2016 at 09:40:46AM -0700, Yong Bakos wrote:
> On Jul 13, 2016, at 7:01 PM, Bryce Harrington wrote:
> >
> > Previously weston_config_section_get_uint was serving dual purpose for
> > parsing both unsigned decimal integer values (ids, counts, seconds,
> > etc.) and hexadecimal valu
On Thu, Jul 14, 2016 at 01:35:09PM +0100, Eric Engestrom wrote:
> On Wed, Jul 13, 2016 at 07:01:28PM -0700, Bryce Harrington wrote:
> > Previously weston_config_section_get_uint was serving dual purpose for
> > parsing both unsigned decimal integer values (ids, counts, seconds,
> > etc.) and hexad
On Jul 13, 2016, at 7:01 PM, Bryce Harrington wrote:
>
> Previously weston_config_section_get_uint was serving dual purpose for
> parsing both unsigned decimal integer values (ids, counts, seconds,
> etc.) and hexadecimal values (colors), by relying on strtoul's
> auto-detection mechanism.
>
>
On 13 July 2016 at 15:53, Jan Engelhardt wrote:
>
> On Wednesday 2016-07-13 13:54, Pekka Paalanen wrote:
>>
>>I think Quentin raised a good point, though. In source-based
>>distros, well, in Gentoo at least which I use almost exclusively,
>>there are no separate -devel packages.
>
> A package is,
On Wed, Jul 13, 2016 at 07:01:28PM -0700, Bryce Harrington wrote:
> Previously weston_config_section_get_uint was serving dual purpose for
> parsing both unsigned decimal integer values (ids, counts, seconds,
> etc.) and hexadecimal values (colors), by relying on strtoul's
> auto-detection mechani
On 14/07/2016 04:01, Bryce Harrington wrote:
Previously weston_config_section_get_uint was serving dual purpose for
parsing both unsigned decimal integer values (ids, counts, seconds,
etc.) and hexadecimal values (colors), by relying on strtoul's
auto-detection mechanism.
However, this usage is
17 matches
Mail list logo