summaryrefslogtreecommitdiffstats
path: root/kjsembed/tests/test_qcombobox.js
blob: 03111692bbb642748208ed56e02b862b782e5761 (plain)
1
2
3
4
5
6
7
8
var h=new QHBox(this);
var combo = new QComboBox(h, "combo");
combo.insertItem("Item 1");
combo.insertItem("Item 2");
combo.insertItem("Item 3");
combo.insertItem("Item 4");
h.show();
application.exec();