Skip to content

Commit c277e6e

Browse files
committedJul 2, 2016
Fix tests, partially reverts ff1f9cf
1 parent b649c0b commit c277e6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎python/core/qgsvectorlayer.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1609,7 +1609,7 @@ class QgsVectorLayer : QgsMapLayer
16091609
* @param fid The id of the changed feature
16101610
* @param geometry The new geometry
16111611
*/
1612-
void geometryChanged( QgsFeatureId fid, const QgsGeometry& geometry );
1612+
void geometryChanged( QgsFeatureId fid, QgsGeometry& geometry );
16131613

16141614
/** This signal is emitted, when attributes are deleted from the provider */
16151615
void committedAttributesDeleted( const QString& layerId, const QgsAttributeList& deletedAttributes );

‎src/core/qgsvectorlayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1999,7 +1999,7 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer
19991999
* @param fid The id of the changed feature
20002000
* @param geometry The new geometry
20012001
*/
2002-
void geometryChanged( QgsFeatureId fid, const QgsGeometry& geometry );
2002+
void geometryChanged( QgsFeatureId fid, QgsGeometry& geometry );
20032003

20042004
/** This signal is emitted, when attributes are deleted from the provider */
20052005
void committedAttributesDeleted( const QString& layerId, const QgsAttributeList& deletedAttributes );

0 commit comments

Comments
 (0)
Please sign in to comment.