Skip to content

Commit

Permalink
[processing] Rename File parameter in modeler to File/Folder
Browse files Browse the repository at this point in the history
Better reflects what it does
  • Loading branch information
nyalldawson committed Jun 1, 2018
1 parent 950d042 commit d1bcfbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/processing/qgsprocessingparametertypeimpl.h
Expand Up @@ -470,12 +470,12 @@ class CORE_EXPORT QgsProcessingParameterTypeFile : public QgsProcessingParameter

QString description() const override
{
return QCoreApplication::translate( "Processing", "A file parameter, for use with non-map layer file sources." );
return QCoreApplication::translate( "Processing", "A file or folder parameter, for use with non-map layer file sources or folders." );
}

QString name() const override
{
return QCoreApplication::translate( "Processing", "File" );
return QCoreApplication::translate( "Processing", "File/Folder" );
}

QString id() const override
Expand Down

0 comments on commit d1bcfbf

Please sign in to comment.