Hi, i have a QTableWidget of comboboxes.
I set the comboboxes like this:

QComboBox *item = new QComboBox();
ui->tableWidget->setCellWidget(i,0,item);

my problem is getting information from the combobox later. i need to get a hold of currentText()..
ui->tableWidget->cellWidget(row,kol)->(no option of currentText())
how can i get a hold of the combobox?

thx,