From 0e62e2df369b1f5a8e8ed38d3a6af6f568caf5e4 Mon Sep 17 00:00:00 2001 From: Bjorn Bringert Date: Sat, 19 Sep 2009 11:01:12 +0100 Subject: Set intent_component of in-app shortcuts to app itself Fixes http://b/issue?id=2130474 "Shortcuts created by pivoted-in search do not have intent_component_name set" Change-Id: I702fe39348b762393ed08ce9905771eb892bf782 --- core/java/android/app/SearchDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/java/android/app/SearchDialog.java b/core/java/android/app/SearchDialog.java index d05c9ab..92515ae 100644 --- a/core/java/android/app/SearchDialog.java +++ b/core/java/android/app/SearchDialog.java @@ -1218,7 +1218,7 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS cv.put(SearchManager.SUGGEST_COLUMN_INTENT_ACTION, intent.getAction()); cv.put(SearchManager.SUGGEST_COLUMN_INTENT_DATA, intent.getDataString()); cv.put(SearchManager.SUGGEST_COLUMN_INTENT_COMPONENT_NAME, - intent.getStringExtra(SearchManager.COMPONENT_NAME_KEY)); + intent.getComponent().flattenToShortString()); // ensure the icons will work for global search cv.put(SearchManager.SUGGEST_COLUMN_ICON_1, -- cgit v1.1