Find special QTtreeWidgetItem if QTreeWidget has many items with this name
-
Hi,
Here on the picture I tried to describe my task.
Let's suppose I have severalQTreeWidgetItemsin the same column. There are many roots and I need to retrieve a child. The problem is that there are possible many items with the name of the child that I'm looking for.
Is there a known simple way to find a special item by the "full path" to this item?QTreeWidget::findItems(...)I think can't do that.

-
No, you have to write something on your own by using findItems() and checking the parents.
-
No, you have to write something on your own by using findItems() and checking the parents.
@Christian-Ehrlicher it is sad... But thank you!