diff options
Diffstat (limited to 'src/webchannel/qmetaobjectpublisher_p.h')
-rw-r--r-- | src/webchannel/qmetaobjectpublisher_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webchannel/qmetaobjectpublisher_p.h b/src/webchannel/qmetaobjectpublisher_p.h index 969421a..4df5b38 100644 --- a/src/webchannel/qmetaobjectpublisher_p.h +++ b/src/webchannel/qmetaobjectpublisher_p.h @@ -153,9 +153,9 @@ struct Q_WEBCHANNEL_EXPORT QMetaObjectPublisherPrivate // Map the registered objects to their id. QHash<const QObject *, QString> registeredObjectIds; - // Map of object names to maps of signal indices to a set of all their properties. + // Map of objects to maps of signal indices to a set of all their property indices. // The last value is a set as a signal can be the notify signal of multiple properties. - typedef QHash<int, QSet<QString> > SignalToPropertyNameMap; + typedef QHash<int, QSet<int> > SignalToPropertyNameMap; QHash<const QObject *, SignalToPropertyNameMap> signalToPropertyMap; // Objects that changed their properties and are waiting for idle client. |