summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_map.eo
diff options
context:
space:
mode:
authorDaniel Kolesa <d.kolesa@osg.samsung.com>2016-06-02 12:54:59 +0100
committerDaniel Kolesa <d.kolesa@osg.samsung.com>2016-06-02 13:00:26 +0100
commitb1946ca5d611585572f1296088c57e4fd3c76279 (patch)
treea08cbd03656e2ff2d5a09fcac75ddd6081af80e6 /src/lib/elementary/elm_map.eo
parent69ea4145c95a28c79c43de89079fdbbca628054b (diff)
downloadefl-b1946ca5d611585572f1296088c57e4fd3c76279.tar.gz
eolian: utilize the new void_ptr builtin across eo files
This lets me narrow down the remaining cases of pointers across the EFL. The void pointers will later need to be reevaluated on per-case basis and replaced appropriately where possible/feasible.
Diffstat (limited to 'src/lib/elementary/elm_map.eo')
-rw-r--r--src/lib/elementary/elm_map.eo8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/elementary/elm_map.eo b/src/lib/elementary/elm_map.eo
index ead23a0205..20d3253ea8 100644
--- a/src/lib/elementary/elm_map.eo
+++ b/src/lib/elementary/elm_map.eo
@@ -343,14 +343,14 @@ class Elm.Map (Elm.Widget, Elm.Interface_Scrollable,
@in tlon: double; [[The destination longitude.]]
@in tlat: double; [[The destination latitude.]]
@in route_cb: Elm_Map_Route_Cb @optional; [[The route to be traced.]]
- @in data: void * @optional; [[A pointer of user data.]]
+ @in data: void_ptr @optional; [[A pointer of user data.]]
}
}
track_add {
[[Add a track on the map.]]
return: Evas.Object; [[The route object. This is an elm object of type Route.]]
params {
- @in emap: void *; [[The emap route object.]]
+ @in emap: void_ptr; [[The emap route object.]]
}
}
region_to_canvas_convert @const {
@@ -495,7 +495,7 @@ class Elm.Map (Elm.Widget, Elm.Interface_Scrollable,
@in lon: double; [[The longitude.]]
@in lat: double; [[The latitude.]]
@in name_cb: Elm_Map_Name_Cb @optional; [[The callback function.]]
- @in data: void * @optional; [[The user callback data.]]
+ @in data: void_ptr @optional; [[The user callback data.]]
}
}
name_search @const {
@@ -508,7 +508,7 @@ class Elm.Map (Elm.Widget, Elm.Interface_Scrollable,
params {
@in address: string; [[The address.]]
@in name_cb: Elm_Map_Name_List_Cb @optional; [[The callback function.]]
- @in data: void * @optional; [[The user callback data.]]
+ @in data: void_ptr @optional; [[The user callback data.]]
}
}
region_bring_in {