Remove unused functions 09/28009/1 accepted/tizen_3.0.2014.q3_common tizen_3.0.2014.q3_common accepted/tizen/common/20140925.172114 submit/tizen_common/20140925.141856 submit/tizen_mobile/20141120.000000 tizen_3.0.2014.q3_common_release
authorYury Usishchev <y.usishchev@samsung.com>
Tue, 23 Sep 2014 08:45:39 +0000 (12:45 +0400)
committerYury Usishchev <y.usishchev@samsung.com>
Wed, 24 Sep 2014 08:55:34 +0000 (12:55 +0400)
Change-Id: I8afdf46a775188a076a0114ab43275c0c56069c2
Signed-off-by: Yury Usishchev <y.usishchev@samsung.com>
demo/dali-table-view.cpp

index 7b1fefb..00bda38 100644 (file)
@@ -92,18 +92,6 @@ const Dali::TextStyle::Weight TABLE_TEXT_STYLE_WEIGHT(Dali::TextStyle::LIGHT);
 const Dali::Vector4           TABLE_TEXT_STYLE_COLOR(0.0f, 0.0f, 0.0f, 1.0f);
 
 
-TextStyle GetDefaultTextStyle()
-{
-  TextStyle textStyle;
-  textStyle.SetFontName(DEFAULT_TEXT_STYLE_FONT_FAMILY);
-  textStyle.SetFontStyle(DEFAULT_TEXT_STYLE_FONT_STYLE);
-  textStyle.SetFontPointSize( Dali::PointSize(DemoHelper::ScalePointSize(DEFAULT_TEXT_STYLE_POINT_SIZE)));
-  textStyle.SetWeight(DEFAULT_TEXT_STYLE_WEIGHT);
-  textStyle.SetTextColor(DEFAULT_TEXT_STYLE_COLOR);
-  textStyle.SetShadow( true );
-  return textStyle;
-}
-
 TextStyle GetTableTextStyle()
 {
   TextStyle textStyle;
@@ -172,15 +160,6 @@ Vector3 ShapeMovementConstraint( const Vector3& current,
 }
 
 /**
- * Constraint to return a bool value based on the alpha channel value
- */
-bool AlphaVisibleConstraint( bool current, const PropertyInput& alphaProperty )
-{
-  Vector4 colour = alphaProperty.GetVector4();
-  return ( colour.a > Math::MACHINE_EPSILON_10000 );
-}
-
-/**
  * Constraint to return a position for the background based on the scroll value
  */
 struct AnimScrollConstraint