46 const QMetaObject* meta =
source->metaObject();
47 QMetaProperty prop = meta->property(meta->indexOfProperty(property));
51 QMetaMethod signal = prop.notifySignal();
58 const QMetaObject* dstMeta = helper->metaObject();
60 QMetaMethod updateSlot = dstMeta->method(
61 dstMeta->indexOfSlot(
"slotPropertyChanged(QString)"));
62 QObject::connect(
source, signal, helper, updateSlot);
66 if (prop.isWritable()) {