summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2016-11-10 15:43:15 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2016-11-10 15:43:15 +0100
commitbacbb1e5bdd693cc8cfbbc95fc8ad8851dbc0a64 (patch)
treede110969a4ea348de5b981e4bf8dfd22ff01c135
parentb0c6fb99006999789266955cfcdd5e7c71947769 (diff)
downloadefl-bacbb1e5bdd693cc8cfbbc95fc8ad8851dbc0a64.tar.gz
elm radio, scroller, sys_notify: remove pointers
-rw-r--r--src/lib/elementary/elm_radio.eo2
-rw-r--r--src/lib/elementary/elm_scroller.eo4
-rw-r--r--src/lib/elementary/elm_sys_notify.eo2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/elementary/elm_radio.eo b/src/lib/elementary/elm_radio.eo
index 893af6dbbe..44f36daa35 100644
--- a/src/lib/elementary/elm_radio.eo
+++ b/src/lib/elementary/elm_radio.eo
@@ -51,7 +51,7 @@ class Elm.Radio (Elm.Check, Elm.Interface.Atspi_Widget_Action)
]]
}
values {
- valuep: int * @nullable; [[Pointer to the integer to modify]]
+ valuep: ptr(int) @nullable; [[Pointer to the integer to modify]]
}
}
@property selected_object {
diff --git a/src/lib/elementary/elm_scroller.eo b/src/lib/elementary/elm_scroller.eo
index 8b9fe469f2..2dcfd903b1 100644
--- a/src/lib/elementary/elm_scroller.eo
+++ b/src/lib/elementary/elm_scroller.eo
@@ -52,8 +52,8 @@ class Elm.Scroller (Elm.Layout, Elm.Interface_Scrollable,
@since 1.8
]]
params {
- @in page_limit_h: int *; [[The maximum of the movable horizontal page]]
- @in page_limit_v: int *; [[The maximum of the movable vertical page]]
+ @in page_limit_h: ptr(int); [[The maximum of the movable horizontal page]]
+ @in page_limit_v: ptr(int); [[The maximum of the movable vertical page]]
}
}
}
diff --git a/src/lib/elementary/elm_sys_notify.eo b/src/lib/elementary/elm_sys_notify.eo
index 5282db5392..881a5ef1b8 100644
--- a/src/lib/elementary/elm_sys_notify.eo
+++ b/src/lib/elementary/elm_sys_notify.eo
@@ -37,7 +37,7 @@ struct Elm.Sys_Notify.Action_Invoked
@since 1.8
]]
id: uint; [[ID of the notification]]
- action_key: char *; [[The key of the action invoked. These match the
+ action_key: ptr(char); [[The key of the action invoked. These match the
keys sent over in the list of actions]]
}