Unused variables. 91/33191/2
authorFrancisco Santos <f1.santos@samsung.com>
Tue, 6 Jan 2015 11:43:08 +0000 (11:43 +0000)
committerFrancisco Santos <f1.santos@samsung.com>
Wed, 7 Jan 2015 11:21:43 +0000 (11:21 +0000)
Change-Id: Ifa243ac802beb9a379942c112665c5a7bef1cc4d

dali/internal/event/actors/model-actor-factory-impl.cpp
dali/internal/event/text/font-impl.cpp
dali/internal/event/text/font-metrics.cpp

index b4d6c6f..2e21f2f 100644 (file)
 #include <dali/internal/event/animation/animator-connector.h>
 
 
-namespace
-{
-const float ROTATION_EPSILON = 0.003f;
-}
-
 namespace Dali
 {
 using Dali::Entity;
index f9f9c83..461b626 100644 (file)
@@ -49,8 +49,6 @@ Debug::Filter* gLogFilter = Debug::Filter::New(Debug::NoLogging, false, "LOG_FON
 const float INCH_TO_POINTS( 72.f );
 const float POINT_TO_INCHES( 1.f / INCH_TO_POINTS );
 
-const char * const DALI_DEFAULT_FONT_CACHE_PATH( DALI_GLYPH_CACHE_DIR );
-
 const float MINIMUM_TEXT_SIZE = 1.0f;     // Text will not be drawn if it's less than this size in pixels
 
 } // unnamed namespace
index f656d83..2fbd685 100644 (file)
@@ -43,8 +43,6 @@ namespace  //unnamed namespace
 const float DEFAULT_UNITS_PER_EM( 1.f );
 
 const uint32_t FIRST_NON_CONTROL_CHAR( 0x20 ); // 0x20 is the white space which is the first non control character.
-const uint32_t LINE_SEPARATOR( '\n' );
-
 
 Integration::TextArray GetUniqueCharacters( const Integration::TextArray& text )
 {