Navigation Menu

Skip to content

Commit

Permalink
fix sip bindings to QgsVectorLayer signals attributeValueChanged/geom…
Browse files Browse the repository at this point in the history
…etryChanged
  • Loading branch information
jef-n committed Jul 16, 2012
1 parent ecc9636 commit 32978fb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/core/qgsvectorlayer.sip
Expand Up @@ -2,6 +2,7 @@
typedef QList<int> QgsAttributeList;
typedef QSet<qint64> QgsFeatureIds;
typedef QSet<int> QgsAttributeIds;
typedef qint64 QgsFeatureId;


/** @note added in 1.7 */
Expand Down Expand Up @@ -675,8 +676,8 @@ signals:
void featureDeleted(qint64 fid);
void layerDeleted();

void attributeValueChanged(qint64 fid, int idx, const QVariant &);
void geometryChanged(qint64 fid, QgsGeometry & );
void attributeValueChanged(QgsFeatureId fid, int idx, const QVariant &);
void geometryChanged(QgsFeatureId fid, QgsGeometry & );

/** Signals emitted after committing changes
\note added in v1.6 */
Expand Down

0 comments on commit 32978fb

Please sign in to comment.