| 24 | using namespace GammaRay; |
| 25 | |
| 26 | BindingNode::BindingNode(QObject *obj, int propIndex, BindingNode *parent) |
| 27 | : m_parent(parent) |
| 28 | , m_object(obj) |
| 29 | , m_propertyIndex(propIndex) |
| 30 | { |
| 31 | Q_ASSERT(obj); |
| 32 | m_canonicalName = m_object->metaObject() ? m_object->metaObject()->property(m_propertyIndex).name() : QStringLiteral(":("); |
| 33 | refreshValue(); |
| 34 | checkForLoops(); |
| 35 | } |
| 36 | |
| 37 | bool BindingNode::operator==(const BindingNode &other) const |
| 38 | { |
nothing calls this directly
no test coverage detected