diff options
Diffstat (limited to 'src/com/cyanogenmod/trebuchet/DragController.java')
-rw-r--r-- | src/com/cyanogenmod/trebuchet/DragController.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/cyanogenmod/trebuchet/DragController.java b/src/com/cyanogenmod/trebuchet/DragController.java index 047c455..da75b8f 100644 --- a/src/com/cyanogenmod/trebuchet/DragController.java +++ b/src/com/cyanogenmod/trebuchet/DragController.java @@ -41,7 +41,7 @@ import java.util.ArrayList; * Class for initiating a drag within a view or across multiple views. */ public class DragController { - private static final String TAG = "Launcher.DragController"; + private static final String TAG = "Trebuchet.DragController"; /** Indicates the drag is a move. */ public static int DRAG_ACTION_MOVE = 0; @@ -416,7 +416,7 @@ public class DragController { @SuppressWarnings("all") // suppress dead code warning final boolean debug = false; if (debug) { - Log.d(Launcher.TAG, "DragController.onInterceptTouchEvent " + ev + " mDragging=" + Log.d(TAG, "onInterceptTouchEvent " + ev + " mDragging=" + mDragging); } |