diff options
-rw-r--r-- | pages/develop/tutorials/c/hello-world-gui.md.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/develop/tutorials/c/hello-world-gui.md.txt b/pages/develop/tutorials/c/hello-world-gui.md.txt index d8784530f..f427cec6e 100644 --- a/pages/develop/tutorials/c/hello-world-gui.md.txt +++ b/pages/develop/tutorials/c/hello-world-gui.md.txt | |||
@@ -184,9 +184,9 @@ This ensures that when the window ``win`` is closed (``EFL_UI_WIN_EVENT_DELETE_R | |||
184 | 184 | ||
185 | ## Step 3: Adding a Box ## | 185 | ## Step 3: Adding a Box ## |
186 | 186 | ||
187 | By adding a simple container box inside your window you can set the initial size of the window, since it adapta to the size of the widgets you place in it. | 187 | By adding a simple container box inside your window you can set the initial size of the window, since it adapts to the size of the widgets you place in it. |
188 | 188 | ||
189 | Declare a new ``Eo`` objects in ``_gui_setup()`` by changing the ``Eo *win;`` line to ``Eo *win, *box;``. | 189 | Declare a new ``Eo`` object in ``_gui_setup()`` by changing the ``Eo *win;`` line to ``Eo *win, *box;``. |
190 | 190 | ||
191 | Next create the box object and add it to the window: | 191 | Next create the box object and add it to the window: |
192 | 192 | ||