From b28cbeffb8f1cfcadf143f07ee4fa94e73c9247d Mon Sep 17 00:00:00 2001 From: "gary.li.wenchao.4" Date: Sun, 7 Feb 2010 08:02:04 +0000 Subject: [PATCH] Fixed compiling error for demo_view_animation git-svn-id: https://rt-thread.googlecode.com/svn/trunk@379 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- examples/gui/SConscript | 1 + examples/gui/demo_view_animation.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/gui/SConscript b/examples/gui/SConscript index 3d1ff1942..b0597ca0c 100644 --- a/examples/gui/SConscript +++ b/examples/gui/SConscript @@ -5,6 +5,7 @@ demo_fnview.c demo_listview.c demo_panel_single.c demo_view.c +demo_view_animation.c demo_view_box.c demo_view_button.c demo_view_checkbox.c diff --git a/examples/gui/demo_view_animation.c b/examples/gui/demo_view_animation.c index f0a99ecb2..93203a760 100644 --- a/examples/gui/demo_view_animation.c +++ b/examples/gui/demo_view_animation.c @@ -1,3 +1,4 @@ +#include "demo_view.h" #include #include #include @@ -99,7 +100,7 @@ rtgui_view_t *demo_view_animation(rtgui_workbench_t* workbench) { rtgui_view_t *view; - view = demo_view(workbench, "DC ¶¯»­"); + view = demo_view(workbench, "DC animation"); if (view != RT_NULL) rtgui_widget_set_event_handler(RTGUI_WIDGET(view), animation_event_handler); -- GitLab