| 60 | } |
| 61 | |
| 62 | void GammaRay::BindingModel::refresh(int row, std::vector<std::unique_ptr<BindingNode>> &&newDependencies) |
| 63 | { |
| 64 | Q_ASSERT(m_bindings); |
| 65 | refresh((*m_bindings)[row].get(), std::move(newDependencies), createIndex(row, 0, (*m_bindings)[row].get())); |
| 66 | } |
| 67 | |
| 68 | bool BindingModel::lessThan(const std::unique_ptr<BindingNode> &a, const std::unique_ptr<BindingNode> &b) |
| 69 | { |
no test coverage detected