summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/app/Wallpaper.java
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2013-05-28 12:34:14 -0700
committerRuben Brunk <rubenbrunk@google.com>2013-05-28 12:34:14 -0700
commitd25fdea42988c72312ab3be0be76ab75e4d944c8 (patch)
treed013957e5cf3e5269c2eb5e3e4a864a28c954d8d /src/com/android/gallery3d/app/Wallpaper.java
parente0dbb510456f0682804a3a2c3b0d3f921ab15b64 (diff)
downloadandroid_packages_apps_Gallery2-d25fdea42988c72312ab3be0be76ab75e4d944c8.tar.gz
android_packages_apps_Gallery2-d25fdea42988c72312ab3be0be76ab75e4d944c8.tar.bz2
android_packages_apps_Gallery2-d25fdea42988c72312ab3be0be76ab75e4d944c8.zip
Removed unused handling for intent extras in editor.
Bug: 9170644 Change-Id: I569b16d278d1813f5a96f9e0231ed71ff9e33687
Diffstat (limited to 'src/com/android/gallery3d/app/Wallpaper.java')
-rw-r--r--src/com/android/gallery3d/app/Wallpaper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/gallery3d/app/Wallpaper.java b/src/com/android/gallery3d/app/Wallpaper.java
index 91bc77271..b0a26c236 100644
--- a/src/com/android/gallery3d/app/Wallpaper.java
+++ b/src/com/android/gallery3d/app/Wallpaper.java
@@ -26,7 +26,7 @@ import android.os.Bundle;
import android.view.Display;
import com.android.gallery3d.common.ApiHelper;
-import com.android.gallery3d.filtershow.FilterShowActivity;
+import com.android.gallery3d.filtershow.crop.CropActivity;
import com.android.gallery3d.filtershow.crop.CropExtras;
/**
@@ -100,7 +100,7 @@ public class Wallpaper extends Activity {
Point size = getDefaultDisplaySize(new Point());
float spotlightX = (float) size.x / width;
float spotlightY = (float) size.y / height;
- Intent request = new Intent(FilterShowActivity.CROP_ACTION)
+ Intent request = new Intent(CropActivity.CROP_ACTION)
.setDataAndType(mPickedItem, IMAGE_TYPE)
.addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT)
.putExtra(CropExtras.KEY_OUTPUT_X, width)