X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Ftext-controls%2Ftext-label.cpp;h=66710a1b2c02e4bf572e797fafcae42dcaff0f18;hb=fb87251cfeff34418a36798700b81786e522018a;hp=39450c7cc04e66c5e9324639b4b20aad7d72e5fe;hpb=9808ae4c46337178721866e7ec163eebe0d1c85a;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/text-controls/text-label.cpp b/dali-toolkit/public-api/controls/text-controls/text-label.cpp index 39450c7..66710a1 100644 --- a/dali-toolkit/public-api/controls/text-controls/text-label.cpp +++ b/dali-toolkit/public-api/controls/text-controls/text-label.cpp @@ -23,19 +23,17 @@ namespace Dali { - namespace Toolkit { - TextLabel TextLabel::New() { return Internal::TextLabel::New(); } -TextLabel TextLabel::New( const std::string& text ) +TextLabel TextLabel::New(const std::string& text) { TextLabel label = Internal::TextLabel::New(); - label.SetProperty( TextLabel::Property::TEXT, text ); + label.SetProperty(TextLabel::Property::TEXT, text); return label; } @@ -44,32 +42,32 @@ TextLabel::TextLabel() { } -TextLabel::TextLabel( const TextLabel& handle ) = default; +TextLabel::TextLabel(const TextLabel& handle) = default; -TextLabel::TextLabel( TextLabel&& rhs ) = default; +TextLabel::TextLabel(TextLabel&& rhs) = default; -TextLabel& TextLabel::operator=( const TextLabel& handle ) = default; +TextLabel& TextLabel::operator=(const TextLabel& handle) = default; -TextLabel& TextLabel::operator=( TextLabel&& rhs ) = default; +TextLabel& TextLabel::operator=(TextLabel&& rhs) = default; TextLabel::~TextLabel() { } -TextLabel TextLabel::DownCast( BaseHandle handle ) +TextLabel TextLabel::DownCast(BaseHandle handle) { return Control::DownCast(handle); } -TextLabel::TextLabel( Internal::TextLabel& implementation ) +TextLabel::TextLabel(Internal::TextLabel& implementation) : Control(implementation) { } -TextLabel::TextLabel( Dali::Internal::CustomActor* internal ) -: Control( internal ) +TextLabel::TextLabel(Dali::Internal::CustomActor* internal) +: Control(internal) { - VerifyCustomActorPointer( internal ); + VerifyCustomActorPointer(internal); } } // namespace Toolkit