| 141 ctn->add(view, layout); |
141 ctn->add(view, layout); |
| 142 |
142 |
| 143 return view; |
143 return view; |
| 144 } |
144 } |
| 145 |
145 |
| 146 UIWIDGET ui_combobox_create(UiObject *obj, UiListArgs *args) { |
146 UIWIDGET ui_dropdown_create(UiObject *obj, UiListArgs *args) { |
| 147 UiContainerPrivate *ctn = ui_obj_container(obj); |
147 UiContainerPrivate *ctn = ui_obj_container(obj); |
| 148 |
148 |
| 149 QComboBox *view = new QComboBox(); |
149 QComboBox *view = new QComboBox(); |
| 150 UiLayout layout = UI_ARGS2LAYOUT(args); |
150 UiLayout layout = UI_ARGS2LAYOUT(args); |
| 151 ctn->add(view, layout); |
151 ctn->add(view, layout); |