| 1345 | |
| 1346 | template <class Primitive_t> |
| 1347 | void removeFromSelectionImpl(QPointer<Primitive_t> primitive, |
| 1348 | qcm::Container<std::vector, QPointer<Primitive_t>>& selectedPrimitives) |
| 1349 | { |
| 1350 | if (selectedPrimitives.contains(primitive.data())) |
| 1351 | selectedPrimitives.removeAll(primitive.data()); |
| 1352 | } |
| 1353 | |
| 1354 | void Graph::removeFromSelection(qan::Node& node) { |
| 1355 | removeFromSelectionImpl<qan::Node>(&node, _selectedNodes); |