am 678cdbe5: Fix build.

Merge commit '678cdbe55e0de71436f8aad5f139eafc2ab6f937' into eclair-mr2

* commit '678cdbe55e0de71436f8aad5f139eafc2ab6f937':
  Fix build.
This commit is contained in:
Amith Yamasani
2009-10-28 11:42:56 -07:00
committed by Android Git Automerger

View File

@@ -1106,8 +1106,8 @@ public class KeyboardView extends View implements View.OnClickListener {
}
private boolean onModifiedTouchEvent(MotionEvent me, boolean possiblePoly) {
final int touchX = (int) me.getX() - mPaddingLeft;
final int touchY = (int) me.getY() + mVerticalCorrection - mPaddingTop;
int touchX = (int) me.getX() - mPaddingLeft;
int touchY = (int) me.getY() + mVerticalCorrection - mPaddingTop;
final int action = me.getAction();
final long eventTime = me.getEventTime();
mOldEventTime = eventTime;