summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/CellLayout.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2015-05-19 12:52:12 -0700
committerSunny Goyal <sunnygoyal@google.com>2015-05-19 12:52:30 -0700
commit83a8f042adda926489494dff217c15ab696139b4 (patch)
treed4848fc86fc9809b0d3f294ece1b4039fa085009 /src/com/android/launcher3/CellLayout.java
parent6cfad01b1cace11a3fe523cebe5dde987f148585 (diff)
downloadandroid_packages_apps_Trebuchet-83a8f042adda926489494dff217c15ab696139b4.tar.gz
android_packages_apps_Trebuchet-83a8f042adda926489494dff217c15ab696139b4.tar.bz2
android_packages_apps_Trebuchet-83a8f042adda926489494dff217c15ab696139b4.zip
Moving LauncherAccessibilityDelegate to accessibility package
Change-Id: I510204a5a12abf2da2757f3e3f8b0e8869a6b04a
Diffstat (limited to 'src/com/android/launcher3/CellLayout.java')
-rw-r--r--src/com/android/launcher3/CellLayout.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/launcher3/CellLayout.java b/src/com/android/launcher3/CellLayout.java
index a348008d8..a6e11b683 100644
--- a/src/com/android/launcher3/CellLayout.java
+++ b/src/com/android/launcher3/CellLayout.java
@@ -3010,7 +3010,7 @@ public class CellLayout extends ViewGroup {
// 2. When long clicking on an empty cell in a CellLayout, we save information about the
// cellX and cellY coordinates and which page was clicked. We then set this as a tag on
// the CellLayout that was long clicked
- static final class CellInfo {
+ public static final class CellInfo {
View cell;
int cellX = -1;
int cellY = -1;
@@ -3019,7 +3019,7 @@ public class CellLayout extends ViewGroup {
long screenId;
long container;
- CellInfo(View v, ItemInfo info) {
+ public CellInfo(View v, ItemInfo info) {
cell = v;
cellX = info.cellX;
cellY = info.cellY;