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 0a17ad5 commit a9f82d1Copy full SHA for a9f82d1
src/plugins/grass/qgsgrassmodule.cpp
@@ -2648,13 +2648,13 @@ QStringList QgsGrassModuleInput::options()
2648
}
2649
2650
2651
- if ( !mGeometryTypeOption.isNull() && current < mGeometryTypes.size() )
+ if ( !mGeometryTypeOption.isEmpty() && current < mGeometryTypes.size() )
2652
{
2653
opt = mGeometryTypeOption + "=" + mGeometryTypes[current] ;
2654
list.push_back( opt );
2655
2656
2657
- if ( !mVectorLayerOption.isNull() && current < mVectorLayerNames.size() )
+ if ( !mVectorLayerOption.isEmpty() && current < mVectorLayerNames.size() )
2658
2659
opt = mVectorLayerOption + "=" + mVectorLayerNames[current] ;
2660
0 commit comments