X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=dali-toolkit%2Finternal%2Ftext%2Fshaper.cpp;h=55101eb461fec1c1265094b946ea1a1ba887539b;hb=47efa8dabe5f3ca6609ff43a622a5f8fcd6311ec;hp=eaaedebeaa36ddd04a5d572f8df51700429c3769;hpb=b7a6bc2dcbd598916a74186ba69bd9e522c23d09;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/shaper.cpp b/dali-toolkit/internal/text/shaper.cpp index eaaedeb..55101eb 100644 --- a/dali-toolkit/internal/text/shaper.cpp +++ b/dali-toolkit/internal/text/shaper.cpp @@ -19,14 +19,14 @@ #include // EXTERNAL INCLUDES +#include #include // INTERNAL INCLUDES #include -#include -#include +#include #include -#include +#include namespace Dali { @@ -134,7 +134,7 @@ void ShapeText( const Vector& text, // Check if the current index is a white space. Do not want to shape a \n. // The last character is always a must-break even if it's not a \n. Length numberOfCharactersToShape = currentIndex - previousIndex; - if( mustBreak && !IsWhiteSpace( *( textBuffer + currentIndex ) ) ) + if( mustBreak && !TextAbstraction::IsWhiteSpace( *( textBuffer + currentIndex ) ) ) { ++numberOfCharactersToShape; }