From b44e720e84fa789f213f03b9bf0e84f6447eb1f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ventura?= Date: Fri, 20 May 2016 15:56:26 +0100 Subject: [PATCH] Use tabs instead of spaces --- examples/helloworld/main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/helloworld/main.c b/examples/helloworld/main.c index 63a5f184..efdb38b6 100755 --- a/examples/helloworld/main.c +++ b/examples/helloworld/main.c @@ -24,7 +24,7 @@ int main(void) uiMenu *menu; uiMenuItem *item; uiBox *box; - uiLabel *label; + uiLabel *label; memset(&o, 0, sizeof (uiInitOptions)); err = uiInit(&o); @@ -35,7 +35,7 @@ int main(void) } menu = uiNewMenu("File"); - item = uiMenuAppendItem(menu, "Item"); + item = uiMenuAppendItem(menu, "Item"); item = uiMenuAppendQuitItem(menu); uiOnShouldQuit(shouldQuit, NULL); @@ -46,9 +46,9 @@ int main(void) box = uiNewVerticalBox(); uiBoxSetPadded(box, 1); uiWindowSetChild(mainwin, uiControl(box)); - - label = uiNewLabel("Hello, World!"); - uiBoxAppend(box, uiControl(label), 0); + + label = uiNewLabel("Hello, World!"); + uiBoxAppend(box, uiControl(label), 0); uiControlShow(uiControl(mainwin)); uiMain();