mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
[processing] do not declare output of saveselectfeatures as points
It can be of any geometry type
This commit is contained in:
parent
270c605081
commit
c3cfcad59a
@ -29,7 +29,7 @@ void QgsSaveSelectedFeatures::initAlgorithm( const QVariantMap & )
|
||||
{
|
||||
addParameter( new QgsProcessingParameterVectorLayer( QStringLiteral( "INPUT" ), QObject::tr( "Input layer" ),
|
||||
QList< int >() << QgsProcessing::TypeVector ) );
|
||||
addParameter( new QgsProcessingParameterFeatureSink( QStringLiteral( "OUTPUT" ), QObject::tr( "Selected features" ), QgsProcessing::TypeVectorPoint ) );
|
||||
addParameter( new QgsProcessingParameterFeatureSink( QStringLiteral( "OUTPUT" ), QObject::tr( "Selected features" ) ) );
|
||||
}
|
||||
|
||||
QString QgsSaveSelectedFeatures::name() const
|
||||
|
Loading…
x
Reference in New Issue
Block a user