Try this:
Qt Code:
  1. item = treeWidget->currentItem();
  2. item->setText(1, "New Date2");
  3. treeWidget->insertTopLevelItem(0, item);
To copy to clipboard, switch view to plain text mode 
The item will be reinserted into the tree properly.