From 9485f8cf80f9ad544d1aa13d67609d650af23fb9 Mon Sep 17 00:00:00 2001 From: Stephane Desneux Date: Sat, 16 Nov 2013 14:24:06 +0100 Subject: [PATCH] PTREL-401: fix build in x86_64 Changed void* casting in efl-assist callback for keyboard events Change-Id: I71163dc828a79abfe06473a8fcd23bf84ea8fc1b Signed-off-by: Stephane Desneux --- src/view/webkit/view_logic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/webkit/view_logic.cpp b/src/view/webkit/view_logic.cpp index ee167ed..8957136 100644 --- a/src/view/webkit/view_logic.cpp +++ b/src/view/webkit/view_logic.cpp @@ -1961,7 +1961,7 @@ void ViewLogic::eaKeyCallback(void* data, Evas_Object* obj, void* eventInfo) ViewLogic* This = static_cast(data); Ea_Callback_Type keyType = - static_cast(reinterpret_cast(eventInfo)); + static_cast(reinterpret_cast(eventInfo)); LogDebug("Key = [" << keyType << "]"); -- 2.7.4