mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 851556: Makee GestureEventListener.cpp's "MAX_TAP_TIME" unsigned, so that the comparisons against it won't trigger build warnings. r=drs
This commit is contained in:
parent
da302bdc4c
commit
8eca34943b
@ -20,7 +20,7 @@ namespace layers {
|
||||
* to be considered a tap. This also applies to double taps, except that it is
|
||||
* used twice.
|
||||
*/
|
||||
static const int MAX_TAP_TIME = 300;
|
||||
static const uint32_t MAX_TAP_TIME = 300;
|
||||
|
||||
/**
|
||||
* Amount of change in span needed to take us from the GESTURE_WAITING_PINCH
|
||||
|
Loading…
Reference in New Issue
Block a user