middleware/src/MainModule/Events/SwipeListener.cs
changeset 17 fda26bfcabef
parent 15 4b78f179e7ce
child 27 6c08d4d7219e
--- a/middleware/src/MainModule/Events/SwipeListener.cs	Wed Apr 04 10:51:21 2012 +0200
+++ b/middleware/src/MainModule/Events/SwipeListener.cs	Thu Apr 05 15:54:44 2012 +0200
@@ -24,6 +24,7 @@
 using System.Linq;
 using System.Text;
 using System.Threading;
+using Trakers.Tracking.Gestures;
 
 namespace Trakers.MainModule.Events
 {
@@ -35,7 +36,7 @@
         public void showAndSend(object o, SwipeEventArgs e)
         {
             String code = "";
-            if (e.direction == Gestures.SwipeDetector.Direction.LEFT)
+            if (e.direction == SwipeDetector.Direction.LEFT)
                 code = "SWIPE-LEFT";
             else
                 code = "SWIPE-RIGHT";