17 QStringListModel& sourceModel,
18 QStringListModel& targetModel)
20 QModelIndexList selected = sourceView->selectionModel()->selectedIndexes();
21 QStringList targetList = targetModel.stringList();
23 for (
const auto& index : selected)
25 targetList.append(index.data().toString());
26 sourceModel.removeRow(index.row());
29 targetModel.setStringList(targetList);