Skip to content
Permalink
Browse files
fixed unnecessary deepcopy and use the correct api
  • Loading branch information
luipir committed Aug 17, 2017
1 parent b625451 commit b73b25d
Showing 1 changed file with 1 addition and 1 deletion.
@@ -205,7 +205,7 @@ QgsFeatureList QgsClipboard::stringToFeatureList( const QString& string, const Q
if ( !fields.isEmpty() )
feature.setFields( fields, true );

feature.setGeometry( *geometry );
feature.setGeometry( geometry );
features.append( feature );
}

0 comments on commit b73b25d

Please sign in to comment.