Fix the name of IME window 94/40894/1
authorSungmin Kwak <sungmin.kwak@samsung.com>
Wed, 11 Feb 2015 09:00:44 +0000 (18:00 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 10 Jun 2015 07:24:10 +0000 (16:24 +0900)
Change-Id: I3c82e4f323758b1d47755b41c85bf64640d93b47

src/sclcoreui-efl.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 4a31eb6..15fab59
@@ -286,13 +286,13 @@ void CSCLCoreUIEFL::run(const sclchar *display)
 
         elm_policy_set(ELM_POLICY_THROTTLE, ELM_POLICY_THROTTLE_NEVER);
 
-        Evas_Object *main_window = elm_win_add(NULL, "Tizen Keyboard", ELM_WIN_UTILITY);
+        Evas_Object *main_window = elm_win_add(NULL, name.c_str(), ELM_WIN_UTILITY);
         m_main_window = SCL_WINDOW_CAST(main_window);
 
         elm_win_borderless_set(main_window, EINA_TRUE);
         elm_win_keyboard_win_set(main_window, EINA_TRUE);
         elm_win_autodel_set(main_window, EINA_TRUE);
-        elm_win_title_set(main_window, "Tizen Keyboard");
+        elm_win_title_set(main_window, name.c_str());
         elm_win_prop_focus_skip_set(main_window, EINA_TRUE);
 
         unsigned int set = 1;