diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2016-05-31 16:02:26 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2016-05-31 16:05:43 +0100 |
commit | 6fc482aa9bceeede94f447a29ad29462a32f4dbc (patch) | |
tree | d8e91135c0dadea5ebcead65cb3b30f8c3820718 /src/lib/emotion/emotion_object.eo | |
parent | af22796356a62b56dca47712e29dd88d87bd722c (diff) |
eolian: utilize the new builtin string type across eo files
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/emotion_object.eo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/emotion/emotion_object.eo b/src/lib/emotion/emotion_object.eo index b449492754..5194cd7439 100644 --- a/src/lib/emotion/emotion_object.eo +++ b/src/lib/emotion/emotion_object.eo | |||
@@ -17,9 +17,9 @@ class Emotion.Object (Evas.Object.Smart, Efl.File, Efl.Player, Efl.Image, Efl.Im | |||
17 | legacy: emotion_object_module_option_set; | 17 | legacy: emotion_object_module_option_set; |
18 | } | 18 | } |
19 | values { | 19 | values { |
20 | opt: const(char) *; [[The option that is being set. Currently | 20 | opt: string; [[The option that is being set. Currently |
21 | supported options: "video" and "audio".]] | 21 | supported options: "video" and "audio".]] |
22 | val: const(char) *; [[The value of the option. Currently only | 22 | val: string; [[The value of the option. Currently only |
23 | supports "off" (?!?!?!)]] | 23 | supports "off" (?!?!?!)]] |
24 | } | 24 | } |
25 | } | 25 | } |
@@ -47,7 +47,7 @@ class Emotion.Object (Evas.Object.Smart, Efl.File, Efl.Player, Efl.Image, Efl.Im | |||
47 | initialized for this object, false otherwise.]] | 47 | initialized for this object, false otherwise.]] |
48 | } | 48 | } |
49 | values { | 49 | values { |
50 | module_filename: const(char) *; [[The name of the module to be | 50 | module_filename: string; [[The name of the module to be |
51 | used (gstreamer or xine).]] | 51 | used (gstreamer or xine).]] |
52 | } | 52 | } |
53 | } | 53 | } |