summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRobert Burns <burnsra@gmail.com>2012-09-05 12:15:53 -0400
committerRobert Burns <burnsra@gmail.com>2012-09-05 15:10:46 -0400
commit0c83a5e02b008b065444bd2209e2570ea13352b0 (patch)
tree05fba378077a89f1168e9a738a87814c3a838df5 /src
parente312ae168cbccda4cb79f17259f4fbfa7b862d67 (diff)
downloadandroid_packages_apps_Trebuchet-0c83a5e02b008b065444bd2209e2570ea13352b0.tar.gz
android_packages_apps_Trebuchet-0c83a5e02b008b065444bd2209e2570ea13352b0.tar.bz2
android_packages_apps_Trebuchet-0c83a5e02b008b065444bd2209e2570ea13352b0.zip
Fix for install shortcut intent
- Enables the ability to install a shortcut to the home screen Change-Id: I6e3e6c36d40907082ea1f3bf11f30110786f8ce9
Diffstat (limited to 'src')
-rw-r--r--src/com/cyanogenmod/trebuchet/InstallShortcutReceiver.java2
-rw-r--r--src/com/cyanogenmod/trebuchet/UninstallShortcutReceiver.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/com/cyanogenmod/trebuchet/InstallShortcutReceiver.java b/src/com/cyanogenmod/trebuchet/InstallShortcutReceiver.java
index d67d6abcd..7cca81fbb 100644
--- a/src/com/cyanogenmod/trebuchet/InstallShortcutReceiver.java
+++ b/src/com/cyanogenmod/trebuchet/InstallShortcutReceiver.java
@@ -34,7 +34,7 @@ import java.util.Set;
public class InstallShortcutReceiver extends BroadcastReceiver {
public static final String ACTION_INSTALL_SHORTCUT =
- "com.cyanogenmod.trebuchet.action.INSTALL_SHORTCUT";
+ "com.android.launcher.action.INSTALL_SHORTCUT";
public static final String NEW_APPS_PAGE_KEY = "apps.new.page";
public static final String NEW_APPS_LIST_KEY = "apps.new.list";
diff --git a/src/com/cyanogenmod/trebuchet/UninstallShortcutReceiver.java b/src/com/cyanogenmod/trebuchet/UninstallShortcutReceiver.java
index 77959d084..6f4f0307b 100644
--- a/src/com/cyanogenmod/trebuchet/UninstallShortcutReceiver.java
+++ b/src/com/cyanogenmod/trebuchet/UninstallShortcutReceiver.java
@@ -35,7 +35,7 @@ import java.util.Set;
public class UninstallShortcutReceiver extends BroadcastReceiver {
private static final String ACTION_UNINSTALL_SHORTCUT =
- "com.cyanogenmod.trebuchet.action.UNINSTALL_SHORTCUT";
+ "com.android.launcher.action.UNINSTALL_SHORTCUT";
// The set of shortcuts that are pending uninstall
private static ArrayList<PendingUninstallShortcutInfo> mUninstallQueue =