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