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 7da2ef4 commit 3b96100Copy full SHA for 3b96100
src/plugins/grass/qgsgrassmodule.cpp
@@ -2589,13 +2589,13 @@ QStringList QgsGrassModuleInput::options()
2589
}
2590
2591
2592
- if ( !mGeometryTypeOption.isNull() && current < mGeometryTypes.size() )
+ if ( !mGeometryTypeOption.isEmpty() && current < mGeometryTypes.size() )
2593
{
2594
opt = mGeometryTypeOption + "=" + mGeometryTypes[current] ;
2595
list.push_back( opt );
2596
2597
2598
- if ( !mVectorLayerOption.isNull() && current < mVectorLayerNames.size() )
+ if ( !mVectorLayerOption.isEmpty() && current < mVectorLayerNames.size() )
2599
2600
opt = mVectorLayerOption + "=" + mVectorLayerNames[current] ;
2601
0 commit comments