Skip to content

Commit 32978fb

Browse files
committed
fix sip bindings to QgsVectorLayer signals attributeValueChanged/geometryChanged
1 parent ecc9636 commit 32978fb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/core/qgsvectorlayer.sip

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
typedef QList<int> QgsAttributeList;
33
typedef QSet<qint64> QgsFeatureIds;
44
typedef QSet<int> QgsAttributeIds;
5+
typedef qint64 QgsFeatureId;
56

67

78
/** @note added in 1.7 */
@@ -675,8 +676,8 @@ signals:
675676
void featureDeleted(qint64 fid);
676677
void layerDeleted();
677678

678-
void attributeValueChanged(qint64 fid, int idx, const QVariant &);
679-
void geometryChanged(qint64 fid, QgsGeometry & );
679+
void attributeValueChanged(QgsFeatureId fid, int idx, const QVariant &);
680+
void geometryChanged(QgsFeatureId fid, QgsGeometry & );
680681

681682
/** Signals emitted after committing changes
682683
\note added in v1.6 */

0 commit comments

Comments
 (0)