| 111 NSView<Container> *sub = [self createTab:index title:title]; |
111 NSView<Container> *sub = [self createTab:index title:title]; |
| 112 |
112 |
| 113 UiObject *newobj = uic_object_new_toplevel(); |
113 UiObject *newobj = uic_object_new_toplevel(); |
| 114 newobj->widget = (__bridge void*)sub; |
114 newobj->widget = (__bridge void*)sub; |
| 115 |
115 |
| 116 UiContainerX *container = ui_create_container(newobj, sub); |
116 UiContainer *container = ui_create_container(newobj, sub); |
| 117 uic_object_push_container(newobj, container); |
117 uic_object_push_container(newobj, container); |
| 118 |
118 |
| 119 return newobj; |
119 return newobj; |
| 120 } |
120 } |
| 121 |
121 |