From: Jihoon Kim Date: Fri, 30 Jul 2010 05:58:56 +0000 (+0900) Subject: [ecore_imf] change parameter type of event_callback_add X-Git-Tag: accepted/2.0/20130306.224007~343 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac2767f4748b94a7a10ac5c8f42ceafc0392bcd1;p=profile%2Fivi%2Fecore.git [ecore_imf] change parameter type of event_callback_add --- diff --git a/debian/changelog b/debian/changelog index 772d795..3dd2480 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/src/lib/ecore_imf/Ecore_IMF.h b/src/lib/ecore_imf/Ecore_IMF.h index 2adea4d..ea7e384 100644 --- a/src/lib/ecore_imf/Ecore_IMF.h +++ b/src/lib/ecore_imf/Ecore_IMF.h @@ -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)); };