From 7cef5ee5fd6ba342a764114ce124ab5d16ee4d63 Mon Sep 17 00:00:00 2001 From: "sungwook79.park" Date: Fri, 21 Aug 2015 17:40:34 +0900 Subject: [PATCH] Prevent issue : fix if statement nesting indent mismatch Change-Id: I7f5b9a885ec57b80653b4523bf8a1142b549b2ac --- ism/src/scim_panel_client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ism/src/scim_panel_client.cpp b/ism/src/scim_panel_client.cpp index 821dd14..51ed77e 100644 --- a/ism/src/scim_panel_client.cpp +++ b/ism/src/scim_panel_client.cpp @@ -1108,10 +1108,10 @@ public: } void set_keyboard_mode (int mode) { - if (m_send_refcount > 0) + if (m_send_refcount > 0) { m_send_trans.put_command (ISM_TRANS_CMD_SET_HARDWARE_KEYBOARD_MODE); m_send_trans.put_data (mode); - + } } void send_candidate_will_hide_ack (void) { -- 2.7.4