resolved conflicts for merge of 6c9a3004 to master
Change-Id: Ia1a8a2015c087004d3dfc64681dbe0315558dc95
This commit is contained in:
@@ -1131,7 +1131,7 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS
|
||||
try {
|
||||
// If the intent was created from a suggestion, it will always have an explicit
|
||||
// component here.
|
||||
Log.i(LOG_TAG, "Starting (as ourselves) " + intent.toURI());
|
||||
Log.i(LOG_TAG, "Starting (as ourselves) " + intent.toUri(0));
|
||||
getContext().startActivity(intent);
|
||||
// If the search switches to a different activity,
|
||||
// SearchDialogWrapper#performActivityResuming
|
||||
|
||||
@@ -3588,7 +3588,7 @@ public final class Settings {
|
||||
ContentValues values = new ContentValues();
|
||||
if (title != null) values.put(TITLE, title);
|
||||
if (folder != null) values.put(FOLDER, folder);
|
||||
values.put(INTENT, intent.toURI());
|
||||
values.put(INTENT, intent.toUri(0));
|
||||
if (shortcut != 0) values.put(SHORTCUT, (int) shortcut);
|
||||
values.put(ORDERING, ordering);
|
||||
return cr.insert(CONTENT_URI, values);
|
||||
|
||||
Reference in New Issue
Block a user