We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent e92e20e commit cc5f7b1Copy full SHA for cc5f7b1
src/analysis/processing/qgsalgorithmextenttolayer.cpp
@@ -19,6 +19,11 @@
19
20
///@cond PRIVATE
21
22
+QString QgsExtentToLayerAlgorithm::name() const
23
+{
24
+ return QStringLiteral( "extenttolayer" );
25
+}
26
+
27
void QgsExtentToLayerAlgorithm::initAlgorithm( const QVariantMap & )
28
{
29
addParameter( new QgsProcessingParameterExtent( QStringLiteral( "INPUT" ), QObject::tr( "Extent" ) ) );
@@ -64,7 +69,3 @@ QVariantMap QgsExtentToLayerAlgorithm::processAlgorithm( const QVariantMap ¶
64
69
65
70
///@endcond
66
71
67
-
68
-QString QgsExtentToLayerAlgorithm::name() const { return QStringLiteral( "extenttolayer" ); }
0 commit comments