X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fwindow-system%2Fcommon%2Fevent-handler.cpp;h=33927978a4966fafa25c61cdc7a46db99fdd508e;hb=f26bce354ce5547d57bbffd7468fceb7ef34d335;hp=25fc86f50be705d0584d914b4f4662a5ee73da0b;hpb=8350a35dc6f7b051490c5ef620f0d8dfb7685afa;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/window-system/common/event-handler.cpp b/dali/internal/window-system/common/event-handler.cpp index 25fc86f..3392797 100755 --- a/dali/internal/window-system/common/event-handler.cpp +++ b/dali/internal/window-system/common/event-handler.cpp @@ -22,7 +22,7 @@ #include #include -#include +#include #include #include #include @@ -261,22 +261,22 @@ void EventHandler::OnAccessibilityNotification( const WindowBase::AccessibilityI } // Create a touch point object. - PointState::Type touchPointState( PointState::DOWN ); + TouchPoint::State touchPointState( TouchPoint::Down ); if( info.state == 0 ) { - touchPointState = PointState::DOWN; // Mouse down. + touchPointState = TouchPoint::Down; // Mouse down. } else if( info.state == 1 ) { - touchPointState = PointState::MOTION; // Mouse move. + touchPointState = TouchPoint::Motion; // Mouse move. } else if( info.state == 2 ) { - touchPointState = PointState::UP; // Mouse up. + touchPointState = TouchPoint::Up; // Mouse up. } else { - touchPointState = PointState::INTERRUPTED; // Error. + touchPointState = TouchPoint::Interrupted; // Error. } // Send touch event to accessibility adaptor.