From 95a3570c88cc6e64131a4bbac48e1e39c7e3ea7a Mon Sep 17 00:00:00 2001 From: inmarket Date: Sun, 11 May 2014 13:10:50 +1000 Subject: Remove NULLs except in comments as some compilers/OS's give strange definitions. --- demos/modules/gwin/list/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demos/modules/gwin/list') diff --git a/demos/modules/gwin/list/main.c b/demos/modules/gwin/list/main.c index 6d469626..ed5b6905 100644 --- a/demos/modules/gwin/list/main.c +++ b/demos/modules/gwin/list/main.c @@ -43,12 +43,12 @@ static void createWidgets(void) { // Create the label for the first list wi.g.width = 150; wi.g.height = 20; wi.g.x = 10, wi.g.y = 80; wi.text = "List 1: Default"; - ghLabel1 = gwinLabelCreate(NULL, &wi); + ghLabel1 = gwinLabelCreate(0, &wi); // Create the label for the second list wi.g.width = 150; wi.g.height = 20; wi.g.x = 165, wi.g.y = 80; wi.text = "List 2: Smooth scrolling"; - ghLabel1 = gwinLabelCreate(NULL, &wi); + ghLabel1 = gwinLabelCreate(0, &wi); // The first list widget wi.g.width = 150; -- cgit v1.2.3