summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehwan Kim <jae.hwan.kim@samsung.com>2015-04-23 22:09:08 +0900
committerJaehwan Kim <jae.hwan.kim@samsung.com>2015-04-23 22:12:32 +0900
commit8f397d559a0a78840a9084faeaeaff1353b2572c (patch)
tree673df852fc6e1c0565c30c5520bef278f390d6bb
parentffdd54df345f815c7b650813a1a08d1e77f7e165 (diff)
downloadefl-8f397d559a0a78840a9084faeaeaff1353b2572c.tar.gz
evas_text: fix default return value.
@fix
-rw-r--r--src/lib/evas/canvas/evas_text.eo2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/evas/canvas/evas_text.eo b/src/lib/evas/canvas/evas_text.eo
index 56b630255b..1614ca66c7 100644
--- a/src/lib/evas/canvas/evas_text.eo
+++ b/src/lib/evas/canvas/evas_text.eo
@@ -320,7 +320,7 @@ class Evas.Text (Evas.Object, Efl.Text, Efl.Text_Properties)
methods {
last_up_to_pos @const {
/*@ Returns the logical position of the last char in the text up to the pos given. this is NOT the position of the last char because of the possibility of RTL in the text. */
- return: int;
+ return: int(-1);
params {
@in Evas_Coord x; /*@ in */
@in Evas_Coord y; /*@ in */