modify Klockwork bug
authorMinkyu Kim <imetjade.kim@samsung.com>
Wed, 2 Oct 2013 08:28:09 +0000 (17:28 +0900)
committerMinkyu Kim <imetjade.kim@samsung.com>
Wed, 2 Oct 2013 08:28:09 +0000 (17:28 +0900)
Change-Id: I954d0259dbe90abaddc2e44abe40923d3bfc927c

src/ui/FUi_TouchPinchGestureDetector.cpp
src/ui/FUi_TouchRotationGestureDetector.cpp
src/ui/FUi_TouchTapGestureDetector.cpp

index 4721539..228319f 100644 (file)
@@ -38,7 +38,6 @@ using namespace Tizen::Base::Runtime;
 
 namespace
 {
-const int DEFAULT_TOUCH_COUNT = 2;
 const int POLLING_PINCH = 16;
 const int PINCH_THRESHOLD = 10;
 }
index 4422b99..bbedaed 100644 (file)
@@ -39,18 +39,12 @@ using namespace Tizen::Base::Utility;
 namespace
 {
 const float PI = 3.14159265;
-const float RAD_90DEGREE = PI / 2;
-const float RAD_180DEGREE = PI;
-const float RAD_270DEGREE = RAD_90DEGREE * 3;
-const float RAD_360DEGREE = RAD_180DEGREE * 2;
-const int DEFAULT_TOUCH_COUNT = 2;
 const int MIN_ANGLE = 15;
 const float DEGREE_360 = 360.0;
 const int DEGREE_180 = 180;
 const int DEGREE_90 = 90;
 const float MIN_MOVEALLOWANCE = 20;
 const int POLLING_ROTATION = 16;
-const unsigned int SECOND_POINT_ID = 1;
 }
 
 namespace Tizen { namespace Ui
index eae37a1..4cba930 100644 (file)
@@ -44,8 +44,6 @@ const int DEFAULT_TAP_COUNT = 2;
 const int DEFAULT_MOVE_ALLOWANCE = 10;
 const int DEFAULT_TOUCH_COUNT = 1;
 const int MAX_TOUCH_COUNT = 10;
-const int INIT_TAP_COUNT = 1;
-const int INVALID_POINT_ID = 9999;
 }
 
 namespace Tizen { namespace Ui