WWW-www.enlightenment.org pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=a86956cfa8e946ea58873b74c55f53943b27f121

commit a86956cfa8e946ea58873b74c55f53943b27f121
Author: Xavi Artigas <xavierarti...@yahoo.es>
Date:   Mon Apr 30 03:49:43 2018 -0700

    Wiki page hello-world-gui.md changed with summary [Adapt to new efl_add / 
efl_add_ref API] by Xavi Artigas
---
 pages/develop/tutorials/c/hello-world-gui.md.txt | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pages/develop/tutorials/c/hello-world-gui.md.txt 
b/pages/develop/tutorials/c/hello-world-gui.md.txt
index 5b4620b31..44c79be7d 100644
--- a/pages/develop/tutorials/c/hello-world-gui.md.txt
+++ b/pages/develop/tutorials/c/hello-world-gui.md.txt
@@ -103,7 +103,7 @@ So far ``_gui_setup`` is empty. Create a window by adding 
the following lines wi
 [...]
    Eo *win;
 
-   win = efl_add(EFL_UI_WIN_CLASS, NULL,
+   win = efl_add(EFL_UI_WIN_CLASS, efl_main_loop_get(),
                  efl_ui_win_type_set(efl_added, EFL_UI_WIN_BASIC),
                  efl_text_set(efl_added, "Hello World"),
                  efl_ui_win_autodel_set(efl_added, EINA_TRUE));
@@ -112,7 +112,7 @@ So far ``_gui_setup`` is empty. Create a window by adding 
the following lines wi
 
 As far as EFL is concerned, a window is just another object. You can declare 
it with ``Eo *win;``. The ``Eo`` type is the base object system for EFL. Most 
graphical elements such as windows, text boxes, buttons, sliders, etc. are 
``Eo`` objects. You can give your window any name you wish but for now call it 
``win``for simplicity's sake.
 
-The next part of the code defines the window itself. The ``efl_add()`` method 
creates a new object of the class specified in the first parameter and puts it 
inside the already existing object specified in the second parameter. In an EFL 
graphical application widgets are inserted inside other objects. For example, 
you can place a text object inside a text box inside a window and so on. In 
this case we want to create a window (``EFL_UI_WIN _CLASS``) and don't need to 
put it inside any othe [...]
+The next part of the code defines the window itself. The ``efl_add()`` method 
creates a new object of the class specified in the first parameter and puts it 
inside the already existing object specified in the second parameter. In an EFL 
graphical application widgets are inserted inside other objects. For example, 
you can place a text object inside a text box inside a window and so on. In 
this case we want to create a window (``EFL_UI_WIN _CLASS``) which must be a 
child of the application [...]
 
 The rest of the parameters of ``efl_add()`` are a list of methods that will be 
called in order, normally to configure the object we have just created. You can 
add as many configuration methods as you want in this list and can use the 
special symbol ``efl_added`` to refer to the created object if you need to.
 
@@ -134,7 +134,7 @@ _gui_setup()
 {
    Eo *win;
 
-   win = efl_add(EFL_UI_WIN_CLASS, NULL,
+   win = efl_add(EFL_UI_WIN_CLASS, efl_main_loop_get(),
                  efl_ui_win_type_set(efl_added, EFL_UI_WIN_BASIC),
                  efl_text_set(efl_added, "Hello World"),
                  efl_ui_win_autodel_set(efl_added, EINA_TRUE));
@@ -221,7 +221,7 @@ _gui_setup()
 {
    Eo *win, *box;
 
-   win = efl_add(EFL_UI_WIN_CLASS, NULL,
+   win = efl_add(EFL_UI_WIN_CLASS, efl_main_loop_get(),
                  efl_ui_win_type_set(efl_added, EFL_UI_WIN_BASIC),
                  efl_text_set(efl_added, "Hello World"),
                  efl_ui_win_autodel_set(efl_added, EINA_TRUE));
@@ -370,7 +370,7 @@ _gui_setup()
 {
    Eo *win, *box;
 
-   win = efl_add(EFL_UI_WIN_CLASS, NULL,
+   win = efl_add(EFL_UI_WIN_CLASS, efl_main_loop_get(),
                  efl_ui_win_type_set(efl_added, EFL_UI_WIN_BASIC),
                  efl_text_set(efl_added, "Hello World"),
                  efl_ui_win_autodel_set(efl_added, EINA_TRUE));

-- 


Reply via email to