What does this do ?
-
@SPlatten
You are asking why there is no object specified for the slot? You don't have to --- in fact I just posted https://forum.qt.io/topic/140746/cant-change-cell-data-one-below-cell/18 where I do not bother.I do not use
SIGNAL/SLOT()ever. But I think you are using QMetaObject::Connection QObject::connect(const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type = Qt::AutoConnection) const overload here.Connects signal from the sender object to this object's method.
Equivalent to connect(sender, signal, this, method, type).
This would mean the signal
itemUpdated()is onm_dataMonitorbut the slotitemUpdated()is onthis.That is a separate matter from whether the signal does not exist per the warning....
-
@SPlatten
You are asking why there is no object specified for the slot? You don't have to --- in fact I just posted https://forum.qt.io/topic/140746/cant-change-cell-data-one-below-cell/18 where I do not bother.I do not use
SIGNAL/SLOT()ever. But I think you are using QMetaObject::Connection QObject::connect(const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type = Qt::AutoConnection) const overload here.Connects signal from the sender object to this object's method.
Equivalent to connect(sender, signal, this, method, type).
This would mean the signal
itemUpdated()is onm_dataMonitorbut the slotitemUpdated()is onthis.That is a separate matter from whether the signal does not exist per the warning....