summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-08-28 09:41:03 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-08-28 09:41:03 -0700
commit3d2e213ce176cb320ac52c71b00cb591beae8e04 (patch)
tree5b52a7aa32594b459a402e49d75fd4270623a4d9
parentd9001a7dc5854d5dfc24a5ead19ad8c05acf171e (diff)
parent725365fe1021e63a784e9e1f0b71ba78eba6c164 (diff)
downloadpackages_apps_Browser-3d2e213ce176cb320ac52c71b00cb591beae8e04.zip
packages_apps_Browser-3d2e213ce176cb320ac52c71b00cb591beae8e04.tar.gz
packages_apps_Browser-3d2e213ce176cb320ac52c71b00cb591beae8e04.tar.bz2
Merge "Fix the issue the SQL request built by QuickSearchBox is not handled properly by Sqlite3."
-rw-r--r--res/xml/bookmarks_searchable.xml2
-rw-r--r--res/xml/searchable.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/res/xml/bookmarks_searchable.xml b/res/xml/bookmarks_searchable.xml
index de56add..8b83f26 100644
--- a/res/xml/bookmarks_searchable.xml
+++ b/res/xml/bookmarks_searchable.xml
@@ -25,6 +25,6 @@
android:searchSettingsDescription="@string/search_settings_description"
android:searchSuggestAuthority="browser"
android:searchSuggestPath="bookmarks"
- android:searchSuggestSelection="url LIKE ?"
+ android:searchSuggestSelection="bookmarks.url LIKE ?"
android:searchSuggestIntentAction="android.intent.action.VIEW"
/>
diff --git a/res/xml/searchable.xml b/res/xml/searchable.xml
index 3397a40..a06d5b0 100644
--- a/res/xml/searchable.xml
+++ b/res/xml/searchable.xml
@@ -27,6 +27,6 @@
android:inputType="textUri"
android:imeOptions="actionGo"
android:searchSuggestAuthority="browser"
- android:searchSuggestSelection="url LIKE ?"
+ android:searchSuggestSelection="history.url LIKE ?"
android:searchSuggestIntentAction="android.intent.action.VIEW"
/>