10 #include <QtGui/QTreeWidgetItem>
17 XTreeWidgetItem( QTreeWidget * parent,
const QStringList & strings) : QTreeWidgetItem (parent,strings) {}
19 bool operator< (
const QTreeWidgetItem &other)
const
21 int sortCol = treeWidget()->sortColumn();
22 return text(sortCol).toUpper() < other.text(sortCol).toUpper();