Hi,
I want to write a qstringlist from data wich is in a listwidget. Idea is that the user selects data in the listwigdet he doesnt want. The resulting qstringlist should than written to a file.
This is for deleting data out of the widget
QListWidgetItem* item = ui->listWidget->takeItem(ui->listWidget->currentRow());
delete item;
How do i now write the content of listwidget in a qstringlist?
Thanks
↧