ecore_imf: fix doxygen about key and mouse release event

This commit is contained in:
Jihoon Kim 2015-03-13 18:59:38 +09:00
parent 1690c58680
commit dba7bdccfe
1 changed files with 2 additions and 2 deletions

View File

@ -474,7 +474,7 @@ struct _Ecore_IMF_Event_Mouse_Down
*/ */
struct _Ecore_IMF_Event_Mouse_Up struct _Ecore_IMF_Event_Mouse_Up
{ {
int button; /**< The button which has been pressed */ int button; /**< The button which has been released */
struct { struct {
int x, y; int x, y;
} output; } output;
@ -583,7 +583,7 @@ struct _Ecore_IMF_Event_Key_Down
*/ */
struct _Ecore_IMF_Event_Key_Up struct _Ecore_IMF_Event_Key_Up
{ {
const char *keyname; /**< The string name of the key pressed */ const char *keyname; /**< The string name of the key released */
Ecore_IMF_Keyboard_Modifiers modifiers; /**< The keyboard modifiers active when the event has been emitted */ Ecore_IMF_Keyboard_Modifiers modifiers; /**< The keyboard modifiers active when the event has been emitted */
Ecore_IMF_Keyboard_Locks locks; /**< The keyboard locks active when the event has been emitted */ Ecore_IMF_Keyboard_Locks locks; /**< The keyboard locks active when the event has been emitted */
const char *key; /**< The logical key : (eg shift+1 == exclamation) */ const char *key; /**< The logical key : (eg shift+1 == exclamation) */