Skip to content
Permalink
Browse files
fix sip bindings to QgsVectorLayer signals attributeValueChanged/geom…
…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.
@@ -2,6 +2,7 @@
typedef QList<int> QgsAttributeList;
typedef QSet<qint64> QgsFeatureIds;
typedef QSet<int> QgsAttributeIds;
typedef qint64 QgsFeatureId;


/** @note added in 1.7 */
@@ -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 */

0 comments on commit 32978fb

Please sign in to comment.