diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-05-20 17:48:52 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-05-20 17:48:52 +0100 |
commit | 378e161cd3e3c9d35ec67842ce878d7e981ad678 (patch) | |
tree | b38c2a85ce181681f900ca93b5d388dc002dc059 | |
parent | 6b91b1bd128328f675f41491d317d781531d1e2d (diff) |
eolian: remove @const_get occurences in the EFL
-rw-r--r-- | src/lib/edje/edje_object.eo | 9 | ||||
-rw-r--r-- | src/lib/evas/canvas/evas_image.eo | 14 |
2 files changed, 15 insertions, 8 deletions
diff --git a/src/lib/edje/edje_object.eo b/src/lib/edje/edje_object.eo index 5e48a4ce13..16da92258f 100644 --- a/src/lib/edje/edje_object.eo +++ b/src/lib/edje/edje_object.eo | |||
@@ -119,6 +119,9 @@ class Edje.Object (Evas.Smart_Clipped, Efl.File) | |||
119 | @see edje_object_perspective_new() | 119 | @see edje_object_perspective_new() |
120 | @see edje_object_perspective_get() | 120 | @see edje_object_perspective_get() |
121 | @see edje_perspective_set() */ | 121 | @see edje_perspective_set() */ |
122 | values { | ||
123 | ps: Edje_Perspective*; /*@ The perspective object that will be used. */ | ||
124 | } | ||
122 | } | 125 | } |
123 | get { | 126 | get { |
124 | /*@ | 127 | /*@ |
@@ -128,9 +131,9 @@ class Edje.Object (Evas.Smart_Clipped, Efl.File) | |||
128 | if there was none, and on errors. | 131 | if there was none, and on errors. |
129 | 132 | ||
130 | @see edje_object_perspective_set() */ | 133 | @see edje_object_perspective_set() */ |
131 | } | 134 | values { |
132 | values { | 135 | ps: const(Edje_Perspective)*; /*@ The perspective object that will be used. */ |
133 | ps: Edje_Perspective * @const_get; /*@ The perspective object that will be used. */ | 136 | } |
134 | } | 137 | } |
135 | } | 138 | } |
136 | @property scale { | 139 | @property scale { |
diff --git a/src/lib/evas/canvas/evas_image.eo b/src/lib/evas/canvas/evas_image.eo index e4bceb4ff7..fc25f3f48b 100644 --- a/src/lib/evas/canvas/evas_image.eo +++ b/src/lib/evas/canvas/evas_image.eo | |||
@@ -319,6 +319,10 @@ class Evas.Image (Evas.Object, Efl.File, Efl.Image, Efl.Gfx.Fill, Efl.Gfx.View) | |||
319 | Set the video surface linked to a given image of the canvas | 319 | Set the video surface linked to a given image of the canvas |
320 | 320 | ||
321 | This function links a video surface to a given canvas image. */ | 321 | This function links a video surface to a given canvas image. */ |
322 | values { | ||
323 | surf: Evas_Video_Surface*; /*@ The new video surface. | ||
324 | @since 1.1 */ | ||
325 | } | ||
322 | } | 326 | } |
323 | get { | 327 | get { |
324 | /*@ | 328 | /*@ |
@@ -328,10 +332,10 @@ class Evas.Image (Evas.Object, Efl.File, Efl.Image, Efl.Gfx.Fill, Efl.Gfx.View) | |||
328 | @since 1.1 | 332 | @since 1.1 |
329 | 333 | ||
330 | This function returns the video surface linked to a given canvas image. */ | 334 | This function returns the video surface linked to a given canvas image. */ |
331 | } | 335 | values { |
332 | values { | 336 | surf: const(Evas_Video_Surface)*; /*@ The new video surface. |
333 | surf: Evas_Video_Surface * @const_get; /*@ The new video surface. | 337 | @since 1.1 */ |
334 | @since 1.1 */ | 338 | } |
335 | } | 339 | } |
336 | } | 340 | } |
337 | @property video_surface_caps { | 341 | @property video_surface_caps { |
@@ -453,7 +457,7 @@ class Evas.Image (Evas.Object, Efl.File, Efl.Image, Efl.Gfx.Fill, Efl.Gfx.View) | |||
453 | This function returns the native surface of a given canvas image. */ | 457 | This function returns the native surface of a given canvas image. */ |
454 | } | 458 | } |
455 | values { | 459 | values { |
456 | surf: Evas_Native_Surface */* @const_get*/ @nonull; /*@ The new native surface. */ | 460 | surf: Evas_Native_Surface* @nonull; /*@ The new native surface. */ |
457 | } | 461 | } |
458 | } | 462 | } |
459 | @property load_scale_down { | 463 | @property load_scale_down { |