Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2dc59d56 authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix bug 3347747 - Use a better context when fetching resources for...

Merge "Fix bug 3347747 - Use a better context when fetching resources for action modes" into honeycomb
parents 64fc11c3 48e8ac31
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -681,12 +681,12 @@ public class ActionBarImpl extends ActionBar {

        @Override
        public void setTitle(int resId) {
            setTitle(mActivity.getString(resId));
            setTitle(mContext.getResources().getString(resId));
        }

        @Override
        public void setSubtitle(int resId) {
            setSubtitle(mActivity.getString(resId));
            setSubtitle(mContext.getResources().getString(resId));
        }

        @Override