diff options
author | Andrew Lee <anwlee@google.com> | 2015-06-08 17:00:43 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-06-08 17:00:43 +0000 |
commit | 02db755505920f55d4f25a3a4d226795823e9b6a (patch) | |
tree | 7f2284c4dba12a641244b950037eee160191f03d /src | |
parent | ff67bc1104e8886c4e26a61b86e7afbac6ddb02c (diff) | |
parent | 7181205921b0f0914c1802a6c87411c0cf703d4f (diff) |
Merge "Fix class variable declaration." into mnc-dev
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/dialer/list/AllContactsFragment.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/dialer/list/AllContactsFragment.java b/src/com/android/dialer/list/AllContactsFragment.java index 20e88e22b..71c6980f3 100644 --- a/src/com/android/dialer/list/AllContactsFragment.java +++ b/src/com/android/dialer/list/AllContactsFragment.java @@ -55,7 +55,7 @@ public class AllContactsFragment extends ContactEntryListFragment<ContactEntryLi public void onViewCreated(View view, android.os.Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); - View mEmptyListView = view.findViewById(R.id.empty_list_view); + mEmptyListView = view.findViewById(R.id.empty_list_view); DialerUtils.configureEmptyListView(mEmptyListView, R.drawable.empty_contacts, R.string.all_contacts_empty, getResources()); getListView().setEmptyView(mEmptyListView); |