summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLauro Moura <lauromoura@expertisesolutions.com.br>2019-03-20 14:12:35 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2019-03-20 14:13:22 +0100
commitefb05a3ac867746e5956f2990ce4957a3d04708e (patch)
tree949d8d77de9a400d3159e74dce0eb7da8a966f2d
parent37c703437a4df331af8a82515b2229ed4d20b670 (diff)
downloadefl-efb05a3ac867746e5956f2990ce4957a3d04708e.tar.gz
efl: Add missing docs to parameters.
Reviewers: segfaultxavi Reviewed By: segfaultxavi Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D8422
-rw-r--r--src/lib/efl/interfaces/efl_text_markup_interactive.eo4
-rw-r--r--src/lib/elementary/efl_ui_dnd_types.eot2
-rw-r--r--src/lib/elementary/efl_ui_selection.eo2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/efl/interfaces/efl_text_markup_interactive.eo b/src/lib/efl/interfaces/efl_text_markup_interactive.eo
index dc0a04af5d..91fa1d64b8 100644
--- a/src/lib/efl/interfaces/efl_text_markup_interactive.eo
+++ b/src/lib/efl/interfaces/efl_text_markup_interactive.eo
@@ -11,8 +11,8 @@ interface @beta Efl.Text_Markup_Interactive extends Efl.Text_Cursor {
this text of a given range]]
}
keys {
- start: ptr(Efl.Text_Cursor_Cursor);
- end: ptr(Efl.Text_Cursor_Cursor);
+ start: ptr(Efl.Text_Cursor_Cursor); [[Start of the markup region]]
+ end: ptr(Efl.Text_Cursor_Cursor); [[End of markup region]]
}
}
cursor_markup_insert {
diff --git a/src/lib/elementary/efl_ui_dnd_types.eot b/src/lib/elementary/efl_ui_dnd_types.eot
index 9f24c6682d..83b9795506 100644
--- a/src/lib/elementary/efl_ui_dnd_types.eot
+++ b/src/lib/elementary/efl_ui_dnd_types.eot
@@ -5,7 +5,7 @@ function @beta Efl.Dnd.Drag_Icon_Create {
params {
@in win: Efl.Canvas.Object; [[The window to create the objects relative to]]
@in drag_obj: Efl.Canvas.Object; [[The drag object]]
- @out off: Eina.Position2D;
+ @out off: Eina.Position2D; [[Offset from the icon position to the cursor]]
}
return: Efl.Canvas.Object; [[The drag icon object]]
};
diff --git a/src/lib/elementary/efl_ui_selection.eo b/src/lib/elementary/efl_ui_selection.eo
index 6132a4f2db..5dfedbfa9a 100644
--- a/src/lib/elementary/efl_ui_selection.eo
+++ b/src/lib/elementary/efl_ui_selection.eo
@@ -9,7 +9,7 @@ mixin @beta Efl.Ui.Selection {
params {
@in type: Efl.Ui.Selection_Type; [[Selection Type]]
@in format: Efl.Ui.Selection_Format; [[Selection Format]]
- @in data: Eina.Slice;
+ @in data: Eina.Slice; [[Selection data]]
@in seat: uint;[[Specified seat for multiple seats case.]]
}
return: future<void>; [[Future for tracking when the selection is lost]]