Skip to content

Commit

Permalink
rename errorDescription -> description, errorName -> id
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids authored and m-kuhn committed Oct 15, 2018
1 parent 16481d2 commit a6dc719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsvectorlayerproperties.cpp
Expand Up @@ -416,7 +416,7 @@ QgsVectorLayerProperties::QgsVectorLayerProperties(
const QStringList activeChecks = mLayer->geometryOptions()->geometryChecks();
for ( const QgsGeometryCheckFactory *factory : factories )
{
QCheckBox *cb = new QCheckBox( factory->name() );
QCheckBox *cb = new QCheckBox( factory->description() );
cb->setChecked( activeChecks.contains( factory->id() ) );
mGeometryCheckFactoriesGroupBoxes.insert( cb, factory->id() );
layout->addWidget( cb );
Expand Down

0 comments on commit a6dc719

Please sign in to comment.