From f936cca8c593492c82a8b9d6d9b8d733e33b1ee4 Mon Sep 17 00:00:00 2001 From: minkyu kim Date: Wed, 10 Apr 2013 15:23:17 +0900 Subject: [PATCH] modify CallOnTouch listeners from private to protected Change-Id: Ie38cddd3dfeebd6d94d77a40bfb606eb25c23d0e --- src/ui/inc/FUi_ControlImpl.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ui/inc/FUi_ControlImpl.h b/src/ui/inc/FUi_ControlImpl.h index c929dbd..cc82af2 100755 --- a/src/ui/inc/FUi_ControlImpl.h +++ b/src/ui/inc/FUi_ControlImpl.h @@ -392,6 +392,11 @@ protected: virtual result OnTouchEventListenerAdded(void); virtual result OnTouchEventListenerRemoved(void); + bool CallOnTouchPressed(const _Control& source, const _TouchInfo& touchinfo); + bool CallOnTouchReleased(const _Control& source, const _TouchInfo& touchinfo); + bool CallOnTouchMoved(const _Control& source, const _TouchInfo& touchinfo); + bool CallOnTouchCanceled(const _Control& source, const _TouchInfo& touchinfo); + private: _ControlImpl(const _ControlImpl& rhs); _ControlImpl& operator =(const _ControlImpl& rhs); @@ -405,11 +410,6 @@ private: void Dispose(bool deallocateCore); - bool CallOnTouchPressed(const _Control& source, const _TouchInfo& touchinfo); - bool CallOnTouchReleased(const _Control& source, const _TouchInfo& touchinfo); - bool CallOnTouchMoved(const _Control& source, const _TouchInfo& touchinfo); - bool CallOnTouchCanceled(const _Control& source, const _TouchInfo& touchinfo); - private: Tizen::Graphics::FloatRectangle __oldBounds; Control* __pControlPublic; -- 2.7.4