diff options
Diffstat (limited to 'demos/modules/gwin/tabset/main.c')
-rw-r--r-- | demos/modules/gwin/tabset/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/modules/gwin/tabset/main.c b/demos/modules/gwin/tabset/main.c index 26c29ae4..f70ab909 100644 --- a/demos/modules/gwin/tabset/main.c +++ b/demos/modules/gwin/tabset/main.c @@ -52,19 +52,19 @@ static void createWidgets(void) { wi.g.width = 120; wi.g.height = 20; wi.g.x = 10; wi.g.y = 10; wi.g.parent = ghPage1; wi.text = "This is page Nr. 1"; - ghLabel1 = gwinLabelCreate(0, &wi, justifyLeft); + ghLabel1 = gwinLabelCreate(0, &wi); // Add some widgets to Page 2 wi.g.width = 120; wi.g.height = 20; wi.g.x = 10; wi.g.y = 50; wi.g.parent = ghPage2; wi.text = "This is page Nr. 2"; - ghLabel2 = gwinLabelCreate(0, &wi, justifyLeft); + ghLabel2 = gwinLabelCreate(0, &wi); // Add some widgets to Page 3 wi.g.width = 120; wi.g.height = 20; wi.g.x = 10; wi.g.y = 90; wi.g.parent = ghPage3; wi.text = "This is page Nr. 3"; - ghLabel3 = gwinLabelCreate(0, &wi, justifyLeft); + ghLabel3 = gwinLabelCreate(0, &wi); } int main(void) { |