void MultinodePropertyConnectorInterface::connectValueChangedSignal(const QObject *receiver, const char *method, Qt::ConnectionType type) { connect(this, SIGNAL(sigValueChanged()), receiver, method, type); notifyValueChanged(); }
void MultinodePropertyConnectorInterface::notifyValueChanged() { emit sigValueChanged(); }
void QJDSpinBox::emitValueChanged(QString value) { emit sigValueChanged(value,this->id()); }