diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-03-30 15:21:18 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-03-30 15:22:20 -0400 |
commit | c328ba006ea5efce88534bd0afbef136a7139d07 (patch) | |
tree | 58721ed026f58acc1285a95526069c17cd748127 /src | |
parent | 709a55889f03d6da9de7e9310b6148c8996ee0f1 (diff) |
terminology: Use proper event structure for mouse up callback
Summary: When catching evas mouse up callbacks, we should be using the
Evas_Event_Mouse_Up structure for the event
@fix
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/media.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/media.c b/src/bin/media.c index c0ed0d0..dc04450 100644 --- a/src/bin/media.c +++ b/src/bin/media.c | |||
@@ -1097,7 +1097,7 @@ _mouse_down_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, vo | |||
1097 | static void | 1097 | static void |
1098 | _mouse_up_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event) | 1098 | _mouse_up_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event) |
1099 | { | 1099 | { |
1100 | Evas_Event_Mouse_Down *ev = event; | 1100 | Evas_Event_Mouse_Up *ev = event; |
1101 | Media *sd = evas_object_smart_data_get(data); | 1101 | Media *sd = evas_object_smart_data_get(data); |
1102 | Evas_Coord dx, dy; | 1102 | Evas_Coord dx, dy; |
1103 | if (!sd) return; | 1103 | if (!sd) return; |