From 5ada56e807a947d6ce9ad3939a540d303034b4ad Mon Sep 17 00:00:00 2001 From: inmarket Date: Thu, 1 May 2014 13:52:26 +1000 Subject: [PATCH] Fix list label in widget demo --- demos/modules/gwin/widgets/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/modules/gwin/widgets/main.c b/demos/modules/gwin/widgets/main.c index c0c26776..ae40b612 100644 --- a/demos/modules/gwin/widgets/main.c +++ b/demos/modules/gwin/widgets/main.c @@ -237,7 +237,7 @@ static void createWidgets(void) { gdispImageOpenFile(&imgYesNo, "image_yesno.gif"); gwinListItemSetImage(ghList3, 1, &imgYesNo); gwinListItemSetImage(ghList3, 3, &imgYesNo); - wi.g.x = 0+3*(LIST_WIDTH+5); wi.text = "L2"; + wi.g.x = 0+3*(LIST_WIDTH+5); wi.text = "L4"; ghList4 = gwinListCreate(0, &wi, TRUE); gwinListAddItem(ghList4, "Item 0", FALSE); gwinListAddItem(ghList4, "Item 1", FALSE);