From 7bfb1fae365a1bee549876a156a02bd45326fef5 Mon Sep 17 00:00:00 2001 From: Pavel fljot Date: Fri, 20 Jul 2012 14:52:18 +0300 Subject: [PATCH] Minor type fix --- src/org/gestouch/core/GesturesManager.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/gestouch/core/GesturesManager.as b/src/org/gestouch/core/GesturesManager.as index 059b62e..77b4d96 100644 --- a/src/org/gestouch/core/GesturesManager.as +++ b/src/org/gestouch/core/GesturesManager.as @@ -274,7 +274,7 @@ package org.gestouch.core { var gesturesForTouch:Vector. = _gesturesForTouchMap[touch] as Vector.; var gesture:Gesture; - var i:int = gesturesForTouch.length; + var i:uint = gesturesForTouch.length; while (i-- > 0) { gesture = gesturesForTouch[i]; @@ -296,7 +296,7 @@ package org.gestouch.core { var gesturesForTouch:Vector. = _gesturesForTouchMap[touch] as Vector.; var gesture:Gesture; - var i:int = gesturesForTouch.length; + var i:uint = gesturesForTouch.length; while (i-- > 0) { gesture = gesturesForTouch[i];