From c3288ba9c1eb50f3d2dce1a420ea2ddc4334c2f0 Mon Sep 17 00:00:00 2001 From: Francisco Santos Date: Tue, 6 Jan 2015 11:43:08 +0000 Subject: [PATCH] Unused variables. Change-Id: Ifa243ac802beb9a379942c112665c5a7bef1cc4d --- dali/internal/event/actors/model-actor-factory-impl.cpp | 5 ----- dali/internal/event/text/font-impl.cpp | 2 -- dali/internal/event/text/font-metrics.cpp | 2 -- 3 files changed, 9 deletions(-) diff --git a/dali/internal/event/actors/model-actor-factory-impl.cpp b/dali/internal/event/actors/model-actor-factory-impl.cpp index b4d6c6f..2e21f2f 100644 --- a/dali/internal/event/actors/model-actor-factory-impl.cpp +++ b/dali/internal/event/actors/model-actor-factory-impl.cpp @@ -27,11 +27,6 @@ #include -namespace -{ -const float ROTATION_EPSILON = 0.003f; -} - namespace Dali { using Dali::Entity; diff --git a/dali/internal/event/text/font-impl.cpp b/dali/internal/event/text/font-impl.cpp index f9f9c83..461b626 100644 --- a/dali/internal/event/text/font-impl.cpp +++ b/dali/internal/event/text/font-impl.cpp @@ -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 diff --git a/dali/internal/event/text/font-metrics.cpp b/dali/internal/event/text/font-metrics.cpp index f656d83..2fbd685 100644 --- a/dali/internal/event/text/font-metrics.cpp +++ b/dali/internal/event/text/font-metrics.cpp @@ -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 ) { -- 2.7.4