From ac8916fac35e5369f5b38271a47bfac76d40bec4 Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Tue, 5 Jul 2016 11:03:59 +0100 Subject: [PATCH] Fix LibUV debug build break Change-Id: I3d34b398765deec2643ee5b93c2f5eea81b2f225 --- adaptors/x11/x-event-handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adaptors/x11/x-event-handler.cpp b/adaptors/x11/x-event-handler.cpp index 5243dd9..0e73249 100644 --- a/adaptors/x11/x-event-handler.cpp +++ b/adaptors/x11/x-event-handler.cpp @@ -220,7 +220,7 @@ void EventHandler::SendEvent(Dali::Integration::Point& point, unsigned long time Integration::TouchEventCombiner::EventDispatchType type = mCombiner.GetNextTouchEvent(point, timeStamp, touchEvent, hoverEvent); if(type != Integration::TouchEventCombiner::DispatchNone ) { - DALI_LOG_INFO(gTouchEventLogFilter, Debug::General, "%d: Device %d: Button state %d (%.2f, %.2f)\n", timeStamp, point.deviceId, point.state, point.local.x, point.local.y); + DALI_LOG_INFO(gTouchEventLogFilter, Debug::General, "%d: Device %d: Button state %d (%.2f, %.2f)\n", timeStamp, point.GetDeviceId(), point.GetState(), point.GetLocalPosition().x, point.GetLocalPosition().y); // First the touch and/or hover event & related gesture events are queued if(type == Integration::TouchEventCombiner::DispatchTouch || type == Integration::TouchEventCombiner::DispatchBoth) -- 2.7.4