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:
parent
344bae4ca4
commit
37dacc0ec9
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue