sorting qlistwidget items
Unsolved
General and Desktop
-
im trying to sory qlistwidget items
sortItems(Qt::AscendingOrder);
when i call this function, the items are sucessfully sorted but i have to trigger an event (ie. right click on listwidget,leftclick,or anything) before it show the sorted items. -
Hi,
Can you show how your are setting up your QListWidget ?
-
my QListWidget object in ui is a MyListWidget
heres my contrsuctor
MyListWidget::MyListWidget(QWidget* parent)
:QListWidget(parent)
{}
what do you mean by "how i set up my qlistwidget"?