From 21ed0cddbff44455bca7aee09c35cd138dd788aa Mon Sep 17 00:00:00 2001 From: blc Date: Thu, 4 Sep 2025 16:19:11 +0800 Subject: [PATCH] fix xts failed Signed-off-by: blc --- frameworks/native/inputmethod_ability/IInputMethodAgent.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/native/inputmethod_ability/IInputMethodAgent.idl b/frameworks/native/inputmethod_ability/IInputMethodAgent.idl index abf76ebe4..e1068cd90 100644 --- a/frameworks/native/inputmethod_ability/IInputMethodAgent.idl +++ b/frameworks/native/inputmethod_ability/IInputMethodAgent.idl @@ -20,10 +20,10 @@ sequenceable input_method_utils..OHOS.MiscServices.ArrayBuffer; sequenceable input_method_utils..OHOS.MiscServices.ResponseDataInner; sequenceable OHOS.IRemoteObject; interface OHOS.MiscServices.IInputMethodAgent { - [ipccode 0, oneway] void DispatchKeyEvent([in] KeyEventValue keyEvent, [in] unsigned long cbId, [in] IRemoteObject channelObject); + [ipccode 0] void DispatchKeyEvent([in] KeyEventValue keyEvent, [in] unsigned long cbId, [in] IRemoteObject channelObject); [oneway] void OnCursorUpdate([in] int positionX, [in] int positionY, [in] int height); [oneway] void OnSelectionChange([in] String text, [in] int oldBegin, [in] int oldEnd, [in] int newBegin, [in] int newEnd); - [oneway] void SetCallingWindow([in] unsigned int windowId); + void SetCallingWindow([in] unsigned int windowId); void OnAttributeChange([in] InputAttributeInner attributeInner); void SendPrivateCommand([in] Value value); void SendMessage([in] ArrayBuffer arraybuffer); -- Gitee