X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-controller.cpp;h=2a3631fe8bd45d5d15e394f6f0ee8454f3226d11;hb=d8fd7201afd843cb96b004d7707bbe10b1634324;hp=626f45193a6b5403851a3c62986ccafabb77aab1;hpb=3dd71fec840b0b77278771a31b3152b732dc6682;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-controller.cpp b/dali-toolkit/internal/text/text-controller.cpp index 626f451..2a3631f 100644 --- a/dali-toolkit/internal/text/text-controller.cpp +++ b/dali-toolkit/internal/text/text-controller.cpp @@ -989,7 +989,6 @@ struct Controller::Impl mVisualModel->SetShadowOffset( Vector2::ZERO ); mVisualModel->SetShadowColor( Vector4::ZERO ); mVisualModel->SetUnderlineEnabled( false ); - mVisualModel->SetUnderlineHeight( 0.0f ); } ~Impl() @@ -1213,11 +1212,6 @@ bool Controller::IsUnderlineEnabled() const return mImpl->mVisualModel->IsUnderlineEnabled(); } -float Controller::GetUnderlineHeight() const -{ - return mImpl->mVisualModel->GetUnderlineHeight(); -} - void Controller::SetTextColor( const Vector4& textColor ) { mImpl->mVisualModel->SetTextColor( textColor ); @@ -1243,11 +1237,6 @@ void Controller::SetUnderlineEnabled( bool enabled ) mImpl->mVisualModel->SetUnderlineEnabled( enabled ); } -void Controller::SetUnderlineHeight( float height ) -{ - mImpl->mVisualModel->SetUnderlineHeight( height ); -} - void Controller::EnableTextInput( DecoratorPtr decorator ) { if( !mImpl->mTextInput )