From aae87b894f72a719a850ec32ad6944bd5c743331 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Mon, 9 Sep 2013 13:19:43 +0200 Subject: Update actionbarsherlock from 4.2 to 4.4 --- .../src/com/actionbarsherlock/widget/SearchView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libraries/ActionBarSherlock/src/com/actionbarsherlock/widget/SearchView.java') diff --git a/libraries/ActionBarSherlock/src/com/actionbarsherlock/widget/SearchView.java b/libraries/ActionBarSherlock/src/com/actionbarsherlock/widget/SearchView.java index c9e7897d4..fb8319645 100644 --- a/libraries/ActionBarSherlock/src/com/actionbarsherlock/widget/SearchView.java +++ b/libraries/ActionBarSherlock/src/com/actionbarsherlock/widget/SearchView.java @@ -1623,8 +1623,8 @@ public class SearchView extends LinearLayout implements CollapsibleActionView { private void forceSuggestionQuery() { try { - Method before = SearchAutoComplete.class.getMethod("doBeforeTextChanged"); - Method after = SearchAutoComplete.class.getMethod("doAfterTextChanged"); + Method before = AutoCompleteTextView.class.getDeclaredMethod("doBeforeTextChanged"); + Method after = AutoCompleteTextView.class.getDeclaredMethod("doAfterTextChanged"); before.setAccessible(true); after.setAccessible(true); before.invoke(mQueryTextView); -- cgit v1.2.3