is there a function like this:
treeWidgetItem=ui->treeWidget->"funct(row)";
is there a function like this:
treeWidgetItem=ui->treeWidget->"funct(row)";
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![]()
ahmetturan (24th July 2011)
Bookmarks