am 26d4e539: am 678cdbe5: Fix build.

Merge commit '26d4e539676346236082ed1d3eccdf078980b7d5' into eclair-mr2-plus-aosp

* commit '26d4e539676346236082ed1d3eccdf078980b7d5':
  Fix build.
This commit is contained in:
Amith Yamasani
2009-10-28 12:46:41 -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;