Edje: fixing signal examples listen to.

SVN revision: 61997
This commit is contained in:
Jonas M. Gastal 2011-08-02 13:31:27 +00:00
parent c71c706853
commit 91fea70ece
5 changed files with 10 additions and 10 deletions

View File

@ -87,7 +87,7 @@ _on_keydown(void *data __UNUSED__,
}
static void
_on_destroy(Ecore_Evas *ee __UNUSED__)
_on_delete(Ecore_Evas *ee __UNUSED__)
{
ecore_main_loop_quit();
}
@ -111,7 +111,7 @@ main(void)
if (!ee)
goto error;
ecore_evas_callback_destroy_set(ee, _on_destroy);
ecore_evas_callback_delete_request_set(ee, _on_delete);
ecore_evas_title_set(ee, "Edje Basics Example");
ecore_evas_show(ee);

View File

@ -71,7 +71,7 @@ _on_keydown(void *data __UNUSED__,
}
static void
_on_destroy(Ecore_Evas *ee __UNUSED__)
_on_delete(Ecore_Evas *ee __UNUSED__)
{
ecore_main_loop_quit();
}
@ -152,7 +152,7 @@ main(void)
if (!ee)
goto error;
ecore_evas_callback_destroy_set(ee, _on_destroy);
ecore_evas_callback_delete_request_set(ee, _on_delete);
ecore_evas_title_set(ee, "Edje Basics Example");
ecore_evas_show(ee);

View File

@ -29,7 +29,7 @@ static Ecore_Evas *ee;
static Evas_Object *bg;
static void
_on_destroy(Ecore_Evas *ee __UNUSED__)
_on_delete(Ecore_Evas *ee __UNUSED__)
{
ecore_main_loop_quit();
}
@ -58,7 +58,7 @@ main(void)
* engine available */
ee = ecore_evas_new(NULL, 0, 0, WIDTH, HEIGHT, NULL);
ecore_evas_callback_destroy_set(ee, _on_destroy);
ecore_evas_callback_delete_request_set(ee, _on_delete);
ecore_evas_callback_resize_set(ee, _canvas_resize_cb);
ecore_evas_title_set(ee, "Edje Swallow Example");
ecore_evas_show(ee);

View File

@ -30,7 +30,7 @@ static Evas *evas;
static Evas_Object *bg, *edje_obj, *rects[4];
static void
_on_destroy(Ecore_Evas *ee __UNUSED__)
_on_delete(Ecore_Evas *ee __UNUSED__)
{
ecore_main_loop_quit();
}
@ -109,7 +109,7 @@ main(void)
* engine available */
ee = ecore_evas_new(NULL, 0, 0, WIDTH, HEIGHT, NULL);
ecore_evas_callback_destroy_set(ee, _on_destroy);
ecore_evas_callback_delete_request_set(ee, _on_delete);
ecore_evas_callback_resize_set(ee, _canvas_resize_cb);
ecore_evas_title_set(ee, "Edje Table Example");
ecore_evas_show(ee);

View File

@ -29,7 +29,7 @@ static Ecore_Evas *ee;
static Evas_Object *bg;
static void
_on_destroy(Ecore_Evas *ee __UNUSED__)
_on_delete(Ecore_Evas *ee __UNUSED__)
{
ecore_main_loop_quit();
}
@ -53,7 +53,7 @@ main(void)
* engine available */
ee = ecore_evas_new(NULL, 0, 0, WIDTH, HEIGHT, NULL);
ecore_evas_callback_destroy_set(ee, _on_destroy);
ecore_evas_callback_delete_request_set(ee, _on_delete);
ecore_evas_title_set(ee, "Edje text Example");
ecore_evas_show(ee);