I have a QListWidget and I need to remove some items.
From what I\'ve researched, this is a generally unpleasant thing to do.
I\'ve read a tonne of solut
takeItem() should work:
for SelectedItem in self.ListDialog.ContentList.selectedItems(): self.ListDialog.ContentList.takeItem(self.ListDialog.ContentList.row(SelectedItem))