summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2019-09-21 17:53:53 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-09-21 18:22:46 +0200
commit625189d2487bf205dfa8b63e200b6d00975742a3 (patch)
tree5504a1742241587d81be03feea8c4148fd397c55
parentb051cb52fac823ae15e5a6aa727b201fd088e0e4 (diff)
downloadefl-625189d2487bf205dfa8b63e200b6d00975742a3.tar.gz
efl_gfx_image: remove ptr()
this is not needed here, and not permitted in a none beta context. Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Differential Revision: https://phab.enlightenment.org/D10069
-rw-r--r--src/lib/efl/interfaces/efl_gfx_image.eo4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/efl/interfaces/efl_gfx_image.eo b/src/lib/efl/interfaces/efl_gfx_image.eo
index 4e8c5c4c1d..b9ccac41ea 100644
--- a/src/lib/efl/interfaces/efl_gfx_image.eo
+++ b/src/lib/efl/interfaces/efl_gfx_image.eo
@@ -213,9 +213,9 @@ interface @beta Efl.Gfx.Image
}
get {}
values {
- horizontal: iterator<ptr(Efl.Gfx.Image_Stretch_Region)>(null); [[Representation of areas that are
+ horizontal: iterator<Efl.Gfx.Image_Stretch_Region>(null); [[Representation of areas that are
stretchable in the image horizontal space.]]
- vertical: iterator<ptr(Efl.Gfx.Image_Stretch_Region)>(null); [[Representation of areas that are
+ vertical: iterator<Efl.Gfx.Image_Stretch_Region>(null); [[Representation of areas that are
stretchable in the image vertical space.]]
}
}