Updated the test program. It works! Now to make the same migration for the GTK+ backend, and then to write the new OS X backend. Then we get to tabs, then the basic controls.

This commit is contained in:
Pietro Gagliardi 2015-04-27 22:27:50 -04:00
parent 344bae4ca4
commit 37dacc0ec9
1 changed files with 2 additions and 2 deletions

View File

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