X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Ftext-controls%2Ftext-editor.cpp;h=980b0c98dc3b7fe97f33a2e365a96af050220156;hp=f3c26f98086fce065e0cbe31aa04d735630c820e;hb=1d82abb8a1a514ce0af63004706135fb7883f89b;hpb=c1b7b114b63facaccd835b602cbd13e7869835a9 diff --git a/dali-toolkit/public-api/controls/text-controls/text-editor.cpp b/dali-toolkit/public-api/controls/text-controls/text-editor.cpp index f3c26f9..980b0c9 100644 --- a/dali-toolkit/public-api/controls/text-controls/text-editor.cpp +++ b/dali-toolkit/public-api/controls/text-controls/text-editor.cpp @@ -23,10 +23,8 @@ namespace Dali { - namespace Toolkit { - TextEditor TextEditor::New() { return Internal::TextEditor::New(); @@ -36,48 +34,47 @@ TextEditor::TextEditor() { } -TextEditor::TextEditor( const TextEditor& handle ) = default; +TextEditor::TextEditor(const TextEditor& handle) = default; -TextEditor::TextEditor( TextEditor&& rhs ) = default; +TextEditor::TextEditor(TextEditor&& rhs) = default; -TextEditor& TextEditor::operator=( const TextEditor& handle ) = default; +TextEditor& TextEditor::operator=(const TextEditor& handle) = default; -TextEditor& TextEditor::operator=( TextEditor&& rhs ) = default; +TextEditor& TextEditor::operator=(TextEditor&& rhs) = default; TextEditor::~TextEditor() { } -TextEditor TextEditor::DownCast( BaseHandle handle ) +TextEditor TextEditor::DownCast(BaseHandle handle) { - return Control::DownCast( handle ); + return Control::DownCast(handle); } TextEditor::TextChangedSignalType& TextEditor::TextChangedSignal() { - return Dali::Toolkit::GetImpl( *this ).TextChangedSignal(); + return Dali::Toolkit::GetImpl(*this).TextChangedSignal(); } TextEditor::InputStyleChangedSignalType& TextEditor::InputStyleChangedSignal() { - return Dali::Toolkit::GetImpl( *this ).InputStyleChangedSignal(); + return Dali::Toolkit::GetImpl(*this).InputStyleChangedSignal(); } - TextEditor::ScrollStateChangedSignalType& TextEditor::ScrollStateChangedSignal() { - return Dali::Toolkit::GetImpl( *this ).ScrollStateChangedSignal(); + return Dali::Toolkit::GetImpl(*this).ScrollStateChangedSignal(); } -TextEditor::TextEditor( Internal::TextEditor& implementation ) -: Control( implementation ) +TextEditor::TextEditor(Internal::TextEditor& implementation) +: Control(implementation) { } -TextEditor::TextEditor( Dali::Internal::CustomActor* internal ) -: Control( internal ) +TextEditor::TextEditor(Dali::Internal::CustomActor* internal) +: Control(internal) { - VerifyCustomActorPointer( internal ); + VerifyCustomActorPointer(internal); } } // namespace Toolkit