From d516515d476b6ff220e6d9d58e236e2c1696e9f7 Mon Sep 17 00:00:00 2001 From: Leandro Dorileo Date: Tue, 11 Dec 2012 21:11:25 +0000 Subject: [PATCH] EPhysics: test_soft_ellipsoid.c becomes test_soft_sphere.c Following the renaming wave test_soft_ellipsoid.c is renamed to its sphere counter part. SVN revision: 80721 --- legacy/ephysics/src/bin/Makefile.am | 2 +- legacy/ephysics/src/bin/test.c | 4 ++-- .../src/bin/{test_soft_ellipsoid.c => test_soft_sphere.c} | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) rename legacy/ephysics/src/bin/{test_soft_ellipsoid.c => test_soft_sphere.c} (92%) diff --git a/legacy/ephysics/src/bin/Makefile.am b/legacy/ephysics/src/bin/Makefile.am index 6d93e3dd64..285f942a26 100644 --- a/legacy/ephysics/src/bin/Makefile.am +++ b/legacy/ephysics/src/bin/Makefile.am @@ -50,7 +50,7 @@ test_sleeping_threshold.c \ test_slider.c \ test_soft_body.c \ test_soft_button.c \ -test_soft_ellipsoid.c \ +test_soft_sphere.c \ test_win_resize.c ephysics_logo_SOURCES = \ diff --git a/legacy/ephysics/src/bin/test.c b/legacy/ephysics/src/bin/test.c index 8f55489150..39fe46e07d 100644 --- a/legacy/ephysics/src/bin/test.c +++ b/legacy/ephysics/src/bin/test.c @@ -49,7 +49,7 @@ void test_sleeping(void *data, Evas_Object *obj, void *event_info); void test_slider(void *data, Evas_Object *obj, void *event_info); void test_soft_body(void *data, Evas_Object *obj, void *event_info); void test_soft_button(void *data, Evas_Object *obj, void *event_info); -void test_soft_ellipsoid(void *data, Evas_Object *obj, void *event_info); +void test_soft_sphere(void *data, Evas_Object *obj, void *event_info); void test_win_resize(void *data, Evas_Object *obj, void *event_info); static const EPhysics_Test tests[] = { @@ -87,7 +87,7 @@ static const EPhysics_Test tests[] = { {"Slider", test_slider}, {"Soft Body", test_soft_body}, {"Soft Button", test_soft_button}, - {"Soft Ellipsoid", test_soft_ellipsoid}, + {"Soft Sphere", test_soft_sphere}, {"Win Resize", test_win_resize}, }; diff --git a/legacy/ephysics/src/bin/test_soft_ellipsoid.c b/legacy/ephysics/src/bin/test_soft_sphere.c similarity index 92% rename from legacy/ephysics/src/bin/test_soft_ellipsoid.c rename to legacy/ephysics/src/bin/test_soft_sphere.c index 393f17d8cd..55353dc8df 100644 --- a/legacy/ephysics/src/bin/test_soft_ellipsoid.c +++ b/legacy/ephysics/src/bin/test_soft_sphere.c @@ -30,7 +30,7 @@ _mouse_down_cb(void *data, Evas *evas __UNUSED__, Evas_Object *obj __UNUSED__, v } static void -_soft_ellipsoid_add(Test_Data *test_data, Evas_Object *front_face, Evas_Object *back_face) +_soft_sphere_add(Test_Data *test_data, Evas_Object *front_face, Evas_Object *back_face) { EPhysics_Body *body; Evas_Coord w, h; @@ -81,7 +81,7 @@ _world_populate(Test_Data *test_data) evas_object_show(back_face); test_data->evas_objs = eina_list_append(test_data->evas_objs, back_face); - _soft_ellipsoid_add(test_data, front_face, back_face); + _soft_sphere_add(test_data, front_face, back_face); } static void @@ -95,7 +95,7 @@ _restart(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED_ } void -test_soft_ellipsoid(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__) +test_soft_sphere(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__) { EPhysics_World *world; Test_Data *test_data; @@ -104,7 +104,7 @@ test_soft_ellipsoid(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *ev return; test_data = test_data_new(); - test_win_add(test_data, "Soft Ellipsoid", EINA_TRUE); + test_win_add(test_data, "Soft Sphere", EINA_TRUE); elm_layout_signal_callback_add(test_data->layout, "restart", "test-theme", _restart, test_data);