Fixed prevent issue about Big parameter passed by value 42/40942/1
authorWonkeun Oh <wonkeun.oh@samsung.com>
Tue, 2 Jun 2015 01:53:47 +0000 (10:53 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 10 Jun 2015 09:12:39 +0000 (18:12 +0900)
Change-Id: Ie03d256854e5806b451018ba7910724675246447

src/inputmethod.cpp

index 346300c..2faf8da 100644 (file)
@@ -38,7 +38,7 @@ class CCoreEventCallback : public ISCLCoreEventCallback
     void on_update_surrounding_text(sclint ic, const sclchar *text, sclint cursor);
     void on_focus_out(sclint ic, const sclchar *ic_uuid);
     void on_focus_in(sclint ic, const sclchar *ic_uuid);
-    void on_ise_show(sclint ic, const int degree, Ise_Context context);
+    void on_ise_show(sclint ic, const int degree, Ise_Context &context);
     void on_ise_hide(sclint ic, const sclchar *ic_uuid);
     void on_get_geometry(sclu32 *pos_x, sclu32 *pos_y, sclu32 *width, sclu32 *height);
     void on_set_language(Ecore_IMF_Input_Panel_Lang language);
@@ -161,7 +161,7 @@ void CCoreEventCallback::on_focus_in(sclint ic, const sclchar *ic_uuid)
     }
 }
 
-void CCoreEventCallback::on_ise_show(sclint ic, const int degree, Ise_Context context)
+void CCoreEventCallback::on_ise_show(sclint ic, const int degree, Ise_Context &context)
 {
     if (g_basic_callback.show) {
         struct _ime_context input_context;