remove references to elm animator!

SVN revision: 62229
This commit is contained in:
Carsten Haitzler 2011-08-09 07:56:24 +00:00
parent 092440e94e
commit 34f146f464
5 changed files with 3 additions and 8 deletions

View File

@ -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

View File

@ -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);

View File

@ -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);
}
}

View File

@ -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);

View File

@ -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);