Skip to content

Commit

Permalink
Fix tests, partially reverts ff1f9cf
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jul 2, 2016
1 parent b649c0b commit c277e6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/core/qgsvectorlayer.sip
Expand Up @@ -1609,7 +1609,7 @@ class QgsVectorLayer : QgsMapLayer
* @param fid The id of the changed feature
* @param geometry The new geometry
*/
void geometryChanged( QgsFeatureId fid, const QgsGeometry& geometry );
void geometryChanged( QgsFeatureId fid, QgsGeometry& geometry );

/** This signal is emitted, when attributes are deleted from the provider */
void committedAttributesDeleted( const QString& layerId, const QgsAttributeList& deletedAttributes );
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayer.h
Expand Up @@ -1999,7 +1999,7 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer
* @param fid The id of the changed feature
* @param geometry The new geometry
*/
void geometryChanged( QgsFeatureId fid, const QgsGeometry& geometry );
void geometryChanged( QgsFeatureId fid, QgsGeometry& geometry );

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

0 comments on commit c277e6e

Please sign in to comment.