MCPcopy Create free account
hub / github.com/KDAB/GammaRay / BindingNode

Method BindingNode

core/bindingnode.cpp:26–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24using namespace GammaRay;
25
26BindingNode::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
37bool BindingNode::operator==(const BindingNode &other) const
38{

Callers

nothing calls this directly

Calls 3

metaObjectMethod · 0.45
nameMethod · 0.45
propertyMethod · 0.45

Tested by

no test coverage detected