Hi there,
i have a QTreeWidget with some QTreeWidgetItem in, i'd like to hide one of them, i tried with setHidden method but it does not work, i add the item in this way:
Qt Code:
  1. QTreeWidgetItem *parentFake = new QTreeWidgetItem ();
  2. parentFake->setText ( 0 , tr ("fake") );
  3. parentFake->setHidden(true);
  4. itemsList.append( parentFake );
To copy to clipboard, switch view to plain text mode 
and i'm able to see them on my GUI...thx