Skip to content

Commit d9ad859

Browse files
committedAug 13, 2017
Fix misplaced SIP_TRANSFER
1 parent 975d730 commit d9ad859

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎python/core/geometry/qgsmultisurface.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class QgsMultiSurface: QgsGeometryCollection
3535

3636

3737

38-
virtual bool addGeometry( QgsAbstractGeometry *g ) /Transfer/;
38+
virtual bool addGeometry( QgsAbstractGeometry *g /Transfer/ );
3939
%Docstring
4040
Adds a geometry and takes ownership. Returns true in case of success
4141
:rtype: bool

‎src/core/geometry/qgsmultisurface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class CORE_EXPORT QgsMultiSurface: public QgsGeometryCollection
4343

4444

4545
//! Adds a geometry and takes ownership. Returns true in case of success
46-
virtual bool addGeometry( QgsAbstractGeometry *g ) override SIP_TRANSFER;
46+
virtual bool addGeometry( QgsAbstractGeometry *g SIP_TRANSFER ) override;
4747

4848
virtual QgsAbstractGeometry *boundary() const override SIP_FACTORY;
4949

0 commit comments

Comments
 (0)
Please sign in to comment.