From 287af1224cce492ff83a3f5110d0a93b94ae68dc Mon Sep 17 00:00:00 2001 From: GlaryCastle Date: Fri, 8 Jul 2022 19:21:45 +0800 Subject: [PATCH] Signed-off-by: GlaryCastle Changes to be committed: modified: services/src/input_method_system_ability.cpp --- services/src/input_method_system_ability.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/src/input_method_system_ability.cpp b/services/src/input_method_system_ability.cpp index 762bd02..ebf703c 100644 --- a/services/src/input_method_system_ability.cpp +++ b/services/src/input_method_system_ability.cpp @@ -176,7 +176,7 @@ namespace MiscServices { return; } std::string params = ""; - GetInputMethodParam(properties,params); + GetInputMethodParam(properties, params); dprintf(fd, "\n - dump all input methods:%s\n\n", params.c_str()); IMSA_HILOGI("InputMethodSystemAbility::DumpAllMethod end."); } @@ -1002,14 +1002,14 @@ namespace MiscServices { void InputMethodSystemAbility::OnDisplayOptionalInputMethod(int32_t userId) { IMSA_HILOGI("InputMethodSystemAbility::OnDisplayOptionalInputMethod"); - std::vector properties; + std::vector properties; listInputMethodByUserId(userId, &properties); if (!properties.size()) { IMSA_HILOGI("InputMethodSystemAbility::OnDisplayOptionalInputMethod has no ime"); return; } std::string params = ""; - GetInputMethodParam(properties,params); + GetInputMethodParam(properties, params); IMSA_HILOGI("InputMethodSystemAbility::OnDisplayOptionalInputMethod param : %{public}s", params.c_str()); const int TITLE_HEIGHT = 62; const int SINGLE_IME_HEIGHT = 66;