| Index: mobile/android/search/java/org/mozilla/search/PreSearchFragment.java |
| =================================================================== |
| --- a/mobile/android/search/java/org/mozilla/search/PreSearchFragment.java |
| +++ b/mobile/android/search/java/org/mozilla/search/PreSearchFragment.java |
| @@ -177,17 +177,18 @@ public class PreSearchFragment extends F |
| if (c != null && c.getCount() > 0) { |
| return; |
| } |
| if (emptyView == null) { |
| final ViewStub emptyViewStub = (ViewStub) getView().findViewById(R.id.empty_view_stub); |
| emptyView = emptyViewStub.inflate(); |
| - ((ImageView) emptyView.findViewById(R.id.empty_image)).setImageResource(R.drawable.icon_search_empty_firefox); |
| + // Changed icon. See https://issues.adblockplus.org/ticket/2606 |
| + ((ImageView) emptyView.findViewById(R.id.empty_image)).setImageResource(R.drawable.abb_icon_search_empty); |
| ((TextView) emptyView.findViewById(R.id.empty_title)).setText(R.string.search_empty_title); |
| ((TextView) emptyView.findViewById(R.id.empty_message)).setText(R.string.search_empty_message); |
| listView.setEmptyView(emptyView); |
| } |
| } |
| private class SearchHistoryLoaderCallbacks implements LoaderManager.LoaderCallbacks<Cursor> { |