From d92e741ca67c58c4be01a64940847feafe26a4b1 Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Tue, 5 Apr 2011 17:07:27 -0700 Subject: [PATCH] Fix build --- src/com/android/launcher2/PagedViewCellLayout.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/android/launcher2/PagedViewCellLayout.java b/src/com/android/launcher2/PagedViewCellLayout.java index b94be4d6f1..762ec58a56 100644 --- a/src/com/android/launcher2/PagedViewCellLayout.java +++ b/src/com/android/launcher2/PagedViewCellLayout.java @@ -248,10 +248,10 @@ public class PagedViewCellLayout extends ViewGroup implements Page { // the right edge of the content of the rightmost icon // icons are centered within cells, find out how much padding that accounts for - return getWidthBeforeLayout() - (mCellWidth - Utilities.getIconContentSize()); + return getWidthBeforeFirstLayout() - (mCellWidth - Utilities.getIconContentSize()); } - int getWidthBeforeLayout() { + int getWidthBeforeFirstLayout() { return mCellCountX * mCellWidth + (mCellCountX - 1) * mWidthGap; }