[ecore_imf] change parameter type of event_callback_add
authorJihoon Kim <jihoon48.kim@samsung.com>
Fri, 30 Jul 2010 05:58:56 +0000 (14:58 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Fri, 30 Jul 2010 05:58:56 +0000 (14:58 +0900)
debian/changelog
src/lib/ecore_imf/Ecore_IMF.h

index 772d795..3dd2480 100644 (file)
@@ -1,3 +1,11 @@
+ecore (0.9.9.060+svn.49540slp2+3build12) unstable; urgency=low
+
+  * [ecore_imf] change parameter type of event_callback_add
+  * Git: 165.213.180.234:/git/slp/pkgs/ecore
+  * Tag: ecore_0.9.9.060+svn.49540slp2+3build12
+
+ -- Jihoon Kim <jihoon48.kim@samsung.com>  Fri, 30 Jul 2010 14:57:28 +0900
+
 ecore (0.9.9.060+svn.49540slp2+3build11) unstable; urgency=low
 
   * [ecore_imf] fix memory leak when private key or disable key func is used
index 2adea4d..ea7e384 100644 (file)
@@ -495,7 +495,7 @@ extern "C" {
 
        void (*input_panel_move) (Ecore_IMF_Context *ctx, int x, int y);
        
-       void (*input_panel_event_callback_add)   (Ecore_IMF_Context *ctx, Ecore_IMF_Input_Panel_Event type, void (*pEventCallBackFunc) (void *data, Ecore_IMF_Context *ctx, int value), const void *data);
+       void (*input_panel_event_callback_add)   (Ecore_IMF_Context *ctx, Ecore_IMF_Input_Panel_Event type, void (*pEventCallBackFunc) (void *data, Ecore_IMF_Context *ctx, int value), void *data);
        void (*input_panel_event_callback_del)   (Ecore_IMF_Context *ctx, Ecore_IMF_Input_Panel_Event type, void (*pEventCallbackFunc) (void *data, Ecore_IMF_Context *ctx, int value));
      };