From 03b141642645400fccbc19bebb18a3a685d35402 Mon Sep 17 00:00:00 2001 From: Srivardhan Hebbar Date: Thu, 23 Jul 2015 10:43:04 +0100 Subject: [PATCH] evas vg: Eolian doc conversion of vg. Summary: Signed-off-by: Srivardhan Hebbar Reviewers: cedric, tasn, q66 Reviewed By: q66 Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D2857 --- src/lib/evas/canvas/evas_vg.eo | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/lib/evas/canvas/evas_vg.eo b/src/lib/evas/canvas/evas_vg.eo index 412a9e1293..9f466d4f1c 100644 --- a/src/lib/evas/canvas/evas_vg.eo +++ b/src/lib/evas/canvas/evas_vg.eo @@ -5,17 +5,16 @@ class Evas.VG (Evas.Object, Efl.Gfx.Fill, Efl.Gfx.View) methods { @property root_node { get { - /*@ - Get the root node of the evas_object_vg. + [[Get the root node of the evas_object_vg. - @note To manually create the shape object and show in the Vg + Note: To manually create the shape object and show in the Vg object canvas you must create the hirarchy and set the parent as root node. - @since 1.14 - */ + + @since 1.14]] } values { - container: Efl_VG *; /*@ Root node of the VG canvas */ + container: Efl_VG *; [[Root node of the VG canvas.]] } } }