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

Commit 7fee71f6 authored by satok's avatar satok
Browse files

Fix build breakage

Change-Id: I5db5bcafc61f0aea5279e2f8679094a900b6f6cc
parent f7ca8f0e
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -1321,7 +1321,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
                || mCurClient.client.asBinder() != client.asBinder()) {
                Slog.w(TAG, "Ignoring showInputMethodAndSubtypeEnablerFromClient of: " + client);
            }
            mHandler.sendEmptyMessage(MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId);
            executeOrSendMessage(mCurMethod, mCaller.obtainMessageO(
                    MSG_SHOW_IM_SUBTYPE_ENABLER, inputMethodId));
        }
    }

@@ -1430,10 +1431,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub

            case MSG_SHOW_IM_SUBTYPE_ENABLER:
                args = (HandlerCaller.SomeArgs)msg.obj;
                try {
                showInputMethodAndSubtypeEnabler((String)args.arg1);
                } catch (RemoteException e) {
                }
                return true;

            case MSG_SHOW_IM_CONFIG:
@@ -1638,7 +1636,9 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
                | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
                | Intent.FLAG_ACTIVITY_CLEAR_TOP);
        if (!TextUtils.isEmpty(inputMethodId)) {
            intent.putExtra(EXTRA_INPUT_METHOD_ID, inputMethodId);
        }
        mContext.startActivity(intent);
    }