From: ali Date: Wed, 12 Aug 2020 07:29:34 +0000 (+0300) Subject: Fix documentation for Text::EditableControlInterface interface override functions X-Git-Tag: dali_1.9.33~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e2841e834b94b4d9eca752e94aaacf0d5e5daba;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git Fix documentation for Text::EditableControlInterface interface override functions Change-Id: I4fe04195e95380562ff0347175fd58b731ae32b9 --- diff --git a/dali-toolkit/internal/controls/text-controls/text-editor-impl.h b/dali-toolkit/internal/controls/text-controls/text-editor-impl.h index ba36ad9..2387d0a 100755 --- a/dali-toolkit/internal/controls/text-controls/text-editor-impl.h +++ b/dali-toolkit/internal/controls/text-controls/text-editor-impl.h @@ -177,22 +177,22 @@ private: // From Control // From EditableControlInterface /** - * @copydoc Text::ControlInterface::TextChanged() + * @copydoc Text::EditableControlInterface::TextChanged() */ virtual void TextChanged(); /** - * @copydoc Text::ControlInterface::MaxLengthReached() + * @copydoc Text::EditableControlInterface::MaxLengthReached() */ virtual void MaxLengthReached(); /** - * @copydoc Text::ControlInterface::InputStyleChanged() + * @copydoc Text::EditableControlInterface::InputStyleChanged() */ virtual void InputStyleChanged( Text::InputStyle::Mask inputStyleMask ); /** - * @copydoc Text::ControlInterface::AddDecoration() + * @copydoc Text::EditableControlInterface::AddDecoration() */ virtual void AddDecoration( Actor& actor, bool needsClipping ); diff --git a/dali-toolkit/internal/controls/text-controls/text-field-impl.h b/dali-toolkit/internal/controls/text-controls/text-field-impl.h index 2991931..201d5d1 100755 --- a/dali-toolkit/internal/controls/text-controls/text-field-impl.h +++ b/dali-toolkit/internal/controls/text-controls/text-field-impl.h @@ -184,22 +184,22 @@ private: // From Control // From EditableControlInterface /** - * @copydoc Text::ControlInterface::TextChanged() + * @copydoc Text::EditableControlInterface::TextChanged() */ virtual void TextChanged(); /** - * @copydoc Text::ControlInterface::MaxLengthReached() + * @copydoc Text::EditableControlInterface::MaxLengthReached() */ virtual void MaxLengthReached(); /** - * @copydoc Text::ControlInterface::InputStyleChanged() + * @copydoc Text::EditableControlInterface::InputStyleChanged() */ virtual void InputStyleChanged( Text::InputStyle::Mask inputStyleMask ); /** - * @copydoc Text::ControlInterface::AddDecoration() + * @copydoc Text::EditableControlInterface::AddDecoration() */ virtual void AddDecoration( Actor& actor, bool needsClipping );