summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehyun Cho <jae_hyun.cho@samsung.com>2018-04-12 11:39:59 +0900
committerJaehyun Cho <jae_hyun.cho@samsung.com>2018-04-12 12:55:49 +0900
commite4fbab8b4716a801053119f5470caee587043bb2 (patch)
tree0bb77fe47531189896ddef6cc53468c4944b4c01
parent48e0c6ea90a337a3f422a658cb826f7a548f88fd (diff)
downloadefl-e4fbab8b4716a801053119f5470caee587043bb2.tar.gz
efl_canvas_object: Change parameter name of property event_animation
Change the parameter name of property event_animation from "event_type" to "desc" to synchronize with other APIs. (The parameter type is Efl.Event.Description)
-rw-r--r--src/lib/evas/canvas/efl_canvas_object.eo6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/evas/canvas/efl_canvas_object.eo b/src/lib/evas/canvas/efl_canvas_object.eo
index 0d17ba8267..d6a97acf49 100644
--- a/src/lib/evas/canvas/efl_canvas_object.eo
+++ b/src/lib/evas/canvas/efl_canvas_object.eo
@@ -576,16 +576,16 @@ abstract Efl.Canvas.Object (Efl.Object, Efl.Gfx, Efl.Gfx.Color, Efl.Gfx.Stack, E
}
}
@property event_animation {
- [[Set the $animation which starts when the given $event_name happens to the object.]]
+ [[Set the $animation which starts when the given $desc happens to the object.]]
get { legacy: null; }
set { legacy: null; }
keys {
- @cref event_type: Efl.Event.Description;
+ @cref desc: Efl.Event.Description;
[[The event description for which the given $animation is set.]]
}
values {
animation: Efl.Canvas.Animation;
- [[The animation which starts when the given $event_name
+ [[The animation which starts when the given $desc
happens to the object.]]
}
}