summaryrefslogtreecommitdiffstats
path: root/core/java/android/app
diff options
context:
space:
mode:
authorAmith Yamasani <yamasani@google.com>2011-03-02 18:43:23 -0800
committerAmith Yamasani <yamasani@google.com>2011-03-02 18:43:23 -0800
commit940ef38c7c46565a8f8fdd6bb8e0183646d0abdc (patch)
tree4d1da209abae8eaf5ae19838d0e2fb5ab5e1a76a /core/java/android/app
parent0528bc77948e49bd75cfd4082fb8fef3a7238626 (diff)
downloadframeworks_base-940ef38c7c46565a8f8fdd6bb8e0183646d0abdc.zip
frameworks_base-940ef38c7c46565a8f8fdd6bb8e0183646d0abdc.tar.gz
frameworks_base-940ef38c7c46565a8f8fdd6bb8e0183646d0abdc.tar.bz2
Pass AppData to the app from SearchDialog queries.
Bug: 3494468 During migration of SearchDialog to use SearchView, the appdata was not passed along. This fixes the loss. Change-Id: Ia754086d2bb95294e1d29650a72e4fdddec9c899
Diffstat (limited to 'core/java/android/app')
-rw-r--r--core/java/android/app/SearchDialog.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/app/SearchDialog.java b/core/java/android/app/SearchDialog.java
index e95a23d..db8d5e9 100644
--- a/core/java/android/app/SearchDialog.java
+++ b/core/java/android/app/SearchDialog.java
@@ -255,6 +255,7 @@ public class SearchDialog extends Dialog {
// of any bad state in the AutoCompleteTextView etc
createContentView();
mSearchView.setSearchableInfo(mSearchable);
+ mSearchView.setAppSearchData(mAppSearchData);
show();
}