fix result texts
authorminkyu kim <imetjade.kim@samsung.com>
Fri, 22 Mar 2013 08:18:38 +0000 (17:18 +0900)
committerminkyu kim <imetjade.kim@samsung.com>
Fri, 22 Mar 2013 08:18:38 +0000 (17:18 +0900)
Change-Id: I69d21ea97ce720d413ded4ea2ef860513fe22ff3

project/src/SampleLongPressGestureDetectorForm.cpp
project/src/SamplePanningGestureDetectorForm.cpp
project/src/SampleTapGestureDetectorForm.cpp

index 998a183..108a7a2 100644 (file)
@@ -264,7 +264,7 @@ SampleLongPressGestureDetectorForm::OnTextValueChanged(const Control& source)
                        {
                                if (duration > 100000)
                                {
-                                       __pTouchResult->SetText(L"The duration should be below 100000.");
+                                       __pTouchResult->SetText(L"The duration should be less than or equal to 100000.");
                                        __pDuration->SetText(L"100000");
                                        __pLongPressGesture->SetDuration(100000);
                                }
@@ -316,7 +316,7 @@ SampleLongPressGestureDetectorForm::OnTextValueChanged(const Control& source)
                                {
                                        if (count > maxTouchPoints)
                                        {
-                                               Tizen::Base::String output = L"The touch count should below  ";
+                                               Tizen::Base::String output = L"The touch count should be less than or equal to ";
                                                __pTouchResult->SetText(output+Tizen::Base::Integer::ToString(maxTouchPoints));
                                                __pFingerCount->SetText(Tizen::Base::Integer::ToString(maxTouchPoints));
                                                __pLongPressGesture->SetTouchCount(maxTouchPoints);
index b1aa66b..a04d39d 100644 (file)
@@ -182,7 +182,7 @@ SamplePanningGestureDetectorForm::OnTextValueChanged(const Control& source)
                {
                        if (count > maxTouchPoints)
                        {
-                               Tizen::Base::String output = L"The touch count should be below ";
+                               Tizen::Base::String output = L"The touch count should be less than or equal to ";
                                __pTouchResult->SetText(output+Tizen::Base::Integer::ToString(maxTouchPoints));
                                __pTouchCount->SetText(Tizen::Base::Integer::ToString(maxTouchPoints));
                                __pPanningGesture->SetTouchCount(maxTouchPoints);
index 91fad60..b9fcfc9 100644 (file)
@@ -295,7 +295,7 @@ SampleTapGestureDetectorForm::OnTextValueChanged(const Control& source)
                        {
                                if (interval > 100000)
                                {
-                                       __pTouchResult->SetText(L"The interval should be below 100000!");
+                                       __pTouchResult->SetText(L"The interval should be less than or equal to 100000!");
                                        __pInterval->SetText(L"100000");
                                        __pTapGesture->SetTapInterval(100000);
                                }
@@ -349,7 +349,7 @@ SampleTapGestureDetectorForm::OnTextValueChanged(const Control& source)
                        {
                                if (count > 10)
                                {
-                                       __pTouchResult->SetText(L"The tap count should be below 10.");
+                                       __pTouchResult->SetText(L"The tap count should be less than or equal to 10.");
                                        __pTapCount->SetText(L"10");
                                        __pTapGesture->SetTapCount(10);
                                }
@@ -401,7 +401,7 @@ SampleTapGestureDetectorForm::OnTextValueChanged(const Control& source)
                                {
                                        if (count > maxTouchPoints)
                                        {
-                                               Tizen::Base::String output = L"The touch count should be below ";
+                                               Tizen::Base::String output = L"The touch count should be less than or equal to ";
                                                __pTouchResult->SetText(output+Tizen::Base::Integer::ToString(maxTouchPoints));
                                                __pFingerCount->SetText(Tizen::Base::Integer::ToString(maxTouchPoints));
                                                __pTapGesture->SetTouchCount(maxTouchPoints);