hermet pushed a commit to branch enventor-0.6. http://git.enlightenment.org/tools/enventor.git/commit/?id=2bae53cbc5183a66d11562e8d813d083003e7f97
commit 2bae53cbc5183a66d11562e8d813d083003e7f97 Author: ChunEon Park <her...@hermet.pe.kr> Date: Wed Jun 24 15:59:59 2015 +0900 Revert "lib/enventor: Use the new Eolian property syntax." This reverts commit d66139a1aafdc4db31025dc4fc211ddea592c607. --- src/lib/enventor_object.eo | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/lib/enventor_object.eo b/src/lib/enventor_object.eo index 060ee96..1e0fa2e 100644 --- a/src/lib/enventor_object.eo +++ b/src/lib/enventor_object.eo @@ -1,7 +1,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { eo_prefix: enventor_obj; - methods { - @property part_highlight { + properties { + part_highlight { set { /*@ @brief @@ -21,7 +21,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { Eina_Bool part_highlight; /*@ ... */ } } - @property live_view_scale { + live_view_scale { set { /*@ @brief @@ -41,7 +41,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { double scale; /*@ ... */ } } - @property dummy_swallow { + dummy_swallow { set { /*@ @brief @@ -61,7 +61,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { Eina_Bool dummy_swallow; /*@ ... */ } } - @property auto_complete { + auto_complete { set { /*@ @brief @@ -81,7 +81,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { Eina_Bool auto_complete; /*@ ... */ } } - @property auto_indent { + auto_indent { set { /*@ @brief @@ -101,7 +101,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { Eina_Bool auto_indent; /*@ ... */ } } - @property ctxpopup { + ctxpopup { set { /*@ @brief @@ -121,7 +121,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { Eina_Bool ctxpopup; /*@ ... */ } } - @property focus { + focus { set { /*@ @brief @@ -141,7 +141,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { Eina_Bool focus; /*@ ... */ } } - @property modified { + modified { set { /*@ @brief @@ -161,7 +161,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { Eina_Bool modified; /*@ ... */ } } - @property font_scale { + font_scale { set { /*@ @brief @@ -181,7 +181,7 @@ class Enventor.Object (Elm.Widget, Efl.File) { double font_scale; /*@ ... */ } } - @property linenumber { + linenumber { set { /*@ @brief @@ -201,6 +201,8 @@ class Enventor.Object (Elm.Widget, Efl.File) { bool linenumber; /*@ ... */ } } + } + methods { path_set { /*@ @brief --