From 0a8c04cf17eea5d52982c59ebb0e03c06c1c8dd2 Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Fri, 27 Jun 2014 13:51:33 +0900 Subject: [PATCH] (ScrollView) Remove unused member variables [problem] Some member variables that are declared in the header are not used. [solution] Remove. Change-Id: I8278643b612731e53211a96ff68d7d198eeac1b5 Signed-off-by: Adeel Kazmi --- .../internal/controls/scrollable/scroll-view/scroll-view-impl.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/base/dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-impl.h b/base/dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-impl.h index 19cdce0..ae1a41a 100644 --- a/base/dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-impl.h +++ b/base/dali-toolkit/internal/controls/scrollable/scroll-view/scroll-view-impl.h @@ -897,9 +897,6 @@ private: unsigned long mTouchDownTime; ///< The touch down time int mGestureStackDepth; ///< How many gestures are currently occuring. - Vector2 mGestureReferencePosition; ///< Point where scaling should occur from. - Vector2 mPinchGestureLastPosition; - Vector2 mPinchGestureLastScale; Vector3 mPanDelta; ///< Amount currently panned. Vector3 mScaleDelta; ///< Amount currently scaled. @@ -995,9 +992,8 @@ private: bool mAxisAutoLock:1; ///< Whether to automatically lock axis when panning. bool mAlterChild:1; ///< Internal flag to control behavior of OnChildAdd/OnChildRemove when Adding internal Actors. bool mDefaultMaxOvershoot:1; ///< Whether to use default max overshoot or application defined one - bool mUserSetPosition:1; ///< SetScrollPosition has been called, return this position until internals get control of scroll position again - bool mCanScrollHorizontal:1; ///< Local value of our property to check against - bool mCanScrollVertical:1; ///< Local value of our property to check against + bool mCanScrollHorizontal:1; ///< Local value of our property to check against + bool mCanScrollVertical:1; ///< Local value of our property to check against }; } // namespace Internal -- 2.7.4