diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2017-11-02 13:51:02 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2017-11-02 13:51:02 +0100 |
commit | cf63573e73c098b5f4e10387afc71f6caea7d173 (patch) | |
tree | 7de13da42a72780a949ed421533ee9ded775044b /src/lib/evas/canvas/evas_canvas3d_node.eo | |
parent | 3989f11f113aac0e9081dc5ed985476425603a20 (diff) |
eolian: only allow reference (ownable) types in containers
Diffstat (limited to '')
-rw-r--r-- | src/lib/evas/canvas/evas_canvas3d_node.eo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/evas/canvas/evas_canvas3d_node.eo b/src/lib/evas/canvas/evas_canvas3d_node.eo index 0c19fe9107..f9b18258fc 100644 --- a/src/lib/evas/canvas/evas_canvas3d_node.eo +++ b/src/lib/evas/canvas/evas_canvas3d_node.eo | |||
@@ -54,8 +54,8 @@ class Evas.Canvas3D.Node (Evas.Canvas3D.Object) | |||
54 | } | 54 | } |
55 | scene_root_get { | 55 | scene_root_get { |
56 | [[Get hash table of scenes using this node as root.]] | 56 | [[Get hash table of scenes using this node as root.]] |
57 | 57 | /* FIXME: void_ptr is actually uintptr and that is also wrong */ | |
58 | return: hash<Evas.Canvas3D.Object, uintptr>; [[ scenes using this node as root. FIXME: Actually a scene, not object.]] | 58 | return: hash<Evas.Canvas3D.Object, void_ptr>; [[ scenes using this node as root. FIXME: Actually a scene, not object.]] |
59 | } | 59 | } |
60 | position_set { | 60 | position_set { |
61 | [[Set the position of the given node. | 61 | [[Set the position of the given node. |