diff -r a9ebacd6c089 -r fda26bfcabef middleware/src/MainModule/Events/SwipeListener.cs --- 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";