summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Zaoui <daniel.zaoui@samsung.com>2015-06-02 08:46:55 +0300
committerDaniel Zaoui <daniel.zaoui@samsung.com>2015-06-02 08:46:55 +0300
commit19b3887f2333f927f5e8edcd8687abce33c8bc36 (patch)
treeb45bb0d71a45266126595db23525f84e85ea4498
parente11728aaa059a16bfe52de832043dc6bbe6a014b (diff)
downloadelementary-19b3887f2333f927f5e8edcd8687abce33c8bc36.tar.gz
Focus: add and fix comments
-rw-r--r--src/lib/elm_widget.c2
-rw-r--r--src/lib/elm_widget.eo6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c
index c21981fe0..b826ee9cf 100644
--- a/src/lib/elm_widget.c
+++ b/src/lib/elm_widget.c
@@ -4131,7 +4131,7 @@ _elm_widget_focus_move_policy_get(Eo *obj EINA_UNUSED, Elm_Widget_Smart_Data *sd
* Sets the widget's focus move policy.
*
* @param obj The widget.
- * @param policy Elm_Focus_Momve_Policy to set object's focus move policy.
+ * @param policy Elm_Focus_Move_Policy to set object's focus move policy.
*/
EOLIAN static void
diff --git a/src/lib/elm_widget.eo b/src/lib/elm_widget.eo
index 22b4417f5..1093e073b 100644
--- a/src/lib/elm_widget.eo
+++ b/src/lib/elm_widget.eo
@@ -795,13 +795,13 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
}
@property focus_move_policy {
set {
- /*@ No description supplied by the EAPI. */
+ /*@ Sets the widget's focus move policy. */
}
get {
- /*@ No description supplied by the EAPI. */
+ /*@ Returns the widget's focus move policy. */
}
values {
- policy: Elm_Focus_Move_Policy;
+ policy: Elm_Focus_Move_Policy; /*@ Object's focus move policy. */
}
}
}