24 QStringListModel& sourceModel,
25 QStringListModel& targetModel)
27 QModelIndexList selected = sourceView->selectionModel()->selectedIndexes();
28 QStringList targetList = targetModel.stringList();
30 for (
const auto& index : selected)
32 targetList.append(index.data().toString());
33 sourceModel.removeRow(index.row());
36 targetModel.setStringList(targetList);