Remove UNSIGNED_INTEGER property type as it does not fully work and causes headache
[platform/core/uifw/dali-core.git] / dali / internal / update / common / property-condition-step-functions.cpp
index 25547da..a32981d 100644 (file)
@@ -51,11 +51,6 @@ ConditionFunction Step::GetFunction(Property::Type valueType)
       function = EvalInteger;
       break;
     }
-    case Property::UNSIGNED_INTEGER:
-    {
-      function = EvalUnsignedInteger;
-      break;
-    }
     case Property::FLOAT:
     {
       function = EvalFloat;
@@ -111,12 +106,6 @@ bool Step::EvalInteger( const Dali::PropertyInput& value, PropertyNotification::
   return Evaluate( propertyValue, arg );
 }
 
-bool Step::EvalUnsignedInteger( const Dali::PropertyInput& value, PropertyNotification::RawArgumentContainer& arg )
-{
-  const float propertyValue = static_cast<float>( value.GetUnsignedInteger() );
-  return Evaluate( propertyValue, arg );
-}
-
 bool Step::EvalFloat( const Dali::PropertyInput& value, PropertyNotification::RawArgumentContainer& arg )
 {
   const float propertyValue = value.GetFloat();