PDA

View Full Version : qtreewidgetitem



ahmetturan
24th July 2011, 16:01
is there a function like this:

treeWidgetItem=ui->treeWidget->"funct(row)";

NullPointer
24th July 2011, 19:38
Hi,

You can use treeItem=ui->treeWidget->topLevelItem(row);, and if you want a child item use treeItem->child(index)....

Here, for more datails: http://doc.qt.nokia.com/latest/qtreewidget.html

HTH :)