Revert "Fix reset sync issue" 98/79998/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 14 Jul 2016 04:45:56 +0000 (21:45 -0700)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 14 Jul 2016 04:45:56 +0000 (21:45 -0700)
This reverts commit bdbfa158f17dc00aadd20cfad2dbb2a04208dc98.

Change-Id: I386b672744f9e5a4266f4db7287b2df24ea42b0a

ism/src/scim_helper.cpp

index 6cc0b6d..d9a1753 100644 (file)
@@ -2014,19 +2014,7 @@ void
 HelperAgent::get_surrounding_text (int maxlen_before, int maxlen_after, String &text, int &cursor)
 {
     LOGD ("");
-#ifdef _TV
-    if (m_impl->socket_active.is_connected () && (m_impl->need_update_surrounding_text == 0)) {
-        m_impl->send.clear ();
-        m_impl->send.put_command (SCIM_TRANS_CMD_REQUEST);
-        m_impl->send.put_data (m_impl->magic_active);
-        m_impl->send.put_command (SCIM_TRANS_CMD_GET_SURROUNDING_TEXT);
-        m_impl->send.put_data ("");
-        m_impl->send.put_data (maxlen_before);
-        m_impl->send.put_data (maxlen_after);
-        m_impl->send.write_to_socket (m_impl->socket_active, m_impl->magic_active);
-    }
-    m_impl->need_update_surrounding_text++;
-#else
+
     if (!m_impl->socket_active.is_connected ())
         return;
 
@@ -2059,7 +2047,6 @@ HelperAgent::get_surrounding_text (int maxlen_before, int maxlen_after, String &
         free (m_impl->surrounding_text);
         m_impl->surrounding_text = NULL;
     }
-#endif
 }
 
 /**