From: Carsten Haitzler Date: Tue, 9 Aug 2011 07:56:24 +0000 (+0000) Subject: remove references to elm animator! X-Git-Tag: v1.0.0~2253 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9790d4d07b5ed5007a471fdbc0664e547eef5a6;p=platform%2Fupstream%2Felementary.git remove references to elm animator! SVN revision: 62229 --- diff --git a/doc/index.doxy b/doc/index.doxy index dcc0167..0d56615 100644 --- a/doc/index.doxy +++ b/doc/index.doxy @@ -4,7 +4,6 @@ * Elementary is mostly composed of widgets, but it also contains some * infrastructure modules that facilitate the use of widgets. These are the * infrastructure modules: - * @li @ref Animator * @li @ref Caches * @li @ref Cursors * @li @ref Debug @@ -28,8 +27,8 @@ * * The other two main groups in Elementary are: * @li @ref widgetslist - These are the widgets you'll compose your UI out of. - * @li @ref containerslist - These are the containers in which the widgets will be - * layouted. + * @li @ref containerslist - These are the containers in which the widgets will + * be laid out. */ /** * @page widgetslist Widget list diff --git a/src/examples/bubble_example_01.c b/src/examples/bubble_example_01.c index 0bd559d..080e4ae 100644 --- a/src/examples/bubble_example_01.c +++ b/src/examples/bubble_example_01.c @@ -20,7 +20,6 @@ EAPI int elm_main(int argc, char **argv) { Evas_Object *win, *bg, *bubble, *label, *icon; - Elm_Animator *animator; char buf[256]; win = elm_win_add(NULL, "bubble", ELM_WIN_BASIC); diff --git a/src/examples/colorselector_example_01.c b/src/examples/colorselector_example_01.c index 9e1ee9f..4b9b036 100644 --- a/src/examples/colorselector_example_01.c +++ b/src/examples/colorselector_example_01.c @@ -12,7 +12,6 @@ EAPI int elm_main(int argc, char **argv) { Evas_Object *win, *bg, *cs, *frame, *rect; - Elm_Animator *animator; char buf[256]; win = elm_win_add(NULL, "color selector", ELM_WIN_BASIC); @@ -52,4 +51,4 @@ _change_color(void *data, Evas_Object *obj, void *event_info) int r, g, b, a; elm_colorselector_color_get(obj, &r, &g, &b, &a); evas_object_color_set(data, r, g, b, a); -} \ No newline at end of file +} diff --git a/src/examples/frame_example_01.c b/src/examples/frame_example_01.c index 16de9d1..b4708a8 100644 --- a/src/examples/frame_example_01.c +++ b/src/examples/frame_example_01.c @@ -11,7 +11,6 @@ elm_main(int argc, char **argv) { Evas_Object *win, *bg; Evas_Object *f1, *r1, *f2, *r2, *f3, *r3, *f4, *r4; - Elm_Animator *animator; char buf[256]; win = elm_win_add(NULL, "frame", ELM_WIN_BASIC); diff --git a/src/examples/separator_example_01.c b/src/examples/separator_example_01.c index 8af9111..0ebd454 100644 --- a/src/examples/separator_example_01.c +++ b/src/examples/separator_example_01.c @@ -10,7 +10,6 @@ EAPI int elm_main(int argc, char **argv) { Evas_Object *win, *bg, *bx, *rect, *separator; - Elm_Animator *animator; char buf[256]; win = elm_win_add(NULL, "separator", ELM_WIN_BASIC);