Disabled the test program for now while we test OS X menus.

This commit is contained in:
Pietro Gagliardi 2015-04-28 14:18:03 -04:00
parent 855bca9b0c
commit 9b191999bf
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ int main(int argc, char *argv[])
return 1; return 1;
} }
initMenus(); /* initMenus();
w = newWindow("Main Window", 320, 240, 1); w = newWindow("Main Window", 320, 240, 1);
uiWindowOnClosing(w, onClosing, NULL); uiWindowOnClosing(w, onClosing, NULL);
@ -45,7 +45,7 @@ int main(int argc, char *argv[])
uiControlShow(uiControl(newWindow("Second Window", 320, 240, 1))); uiControlShow(uiControl(newWindow("Second Window", 320, 240, 1)));
uiControlShow(uiControl(w)); uiControlShow(uiControl(w));
uiMain(); */ uiMain();
printf("after uiMain()\n"); printf("after uiMain()\n");
return 0; return 0;
} }