summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2016-11-10 15:38:53 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2016-11-10 15:38:53 +0100
commit50884a139b16770895f548b2b2f3b17221265d58 (patch)
tree76181f28e4ef38f7d9a0ccf983a71675809ae0ba
parent318bf22a99c15cdc58234ca94b8df19df70a9bef (diff)
downloadefl-50884a139b16770895f548b2b2f3b17221265d58.tar.gz
elm dayselector, entry, glview: remove pointers
-rw-r--r--src/lib/elementary/elm_dayselector.eo2
-rw-r--r--src/lib/elementary/elm_entry.eo2
-rw-r--r--src/lib/elementary/elm_glview.eo4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/elementary/elm_dayselector.eo b/src/lib/elementary/elm_dayselector.eo
index abcb8bbd36..0fe2f5ca7e 100644
--- a/src/lib/elementary/elm_dayselector.eo
+++ b/src/lib/elementary/elm_dayselector.eo
@@ -106,7 +106,7 @@ class Elm.Dayselector (Elm.Layout)
*/
params {
- @in weekdays: string * @nullable; [[Array of seven strings to be used as weekday names.
+ @in weekdays: ptr(string) @nullable; [[Array of seven strings to be used as weekday names.
Warning: It must have 7 elements, or it will access invalid memory.
Warning: The strings must be NULL terminated ('@\0').]]
}
diff --git a/src/lib/elementary/elm_entry.eo b/src/lib/elementary/elm_entry.eo
index 9ae2f85878..a15be39f93 100644
--- a/src/lib/elementary/elm_entry.eo
+++ b/src/lib/elementary/elm_entry.eo
@@ -633,7 +633,7 @@ class Elm.Entry (Elm.Layout, Elm.Interface_Scrollable, Efl.Ui.Clickable,
Only the text is returned, any format that may exist will not be part
of the return value. You must free the string when done with \@ref free.
]]
- return: own(char *) @warn_unused;
+ return: own(ptr(char)) @warn_unused;
}
}
@property selection {
diff --git a/src/lib/elementary/elm_glview.eo b/src/lib/elementary/elm_glview.eo
index ae39cca247..fcf80d1ebb 100644
--- a/src/lib/elementary/elm_glview.eo
+++ b/src/lib/elementary/elm_glview.eo
@@ -146,7 +146,7 @@ class Elm.Glview (Elm.Widget, Efl.Gfx.View)
@property gl_api {
get {
[[Get the gl api struct for gl rendering.]]
- return: Evas_GL_API *;
+ return: ptr(Evas_GL_API);
}
}
@property evas_gl {
@@ -159,7 +159,7 @@ class Elm.Glview (Elm.Widget, Efl.Gfx.View)
@since 1.12
]]
- return: Evas_GL *;
+ return: ptr(Evas_GL);
}
}
@property rotation {