Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Aug 22, 2018
1 parent 37a49e2 commit 4b6421c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsvectorlayerproperties.cpp
Expand Up @@ -429,8 +429,8 @@ QgsVectorLayerProperties::QgsVectorLayerProperties(
mRemoveDuplicateVerticeCheckbox->setEnabled( true );
mGeometryPrecisionSpinBox->setEnabled( true );

mRemoveDuplicateVerticeCheckbox->setChecked( geomOps.removeDuplicateNodes() );
mGeometryPrecisionSpinBox->setValue( geomOps.geometryPrecision() );
mRemoveDuplicateVerticeCheckbox->setChecked( geomOps.removeDuplicateNodes );
mGeometryPrecisionSpinBox->setValue( geomOps.geometryPrecision );

mGeometryPrecisionSpinBox->setSuffix( QStringLiteral( " [%1]" ).arg( QgsUnitTypes::toAbbreviatedString( mLayer->crs().mapUnits() ) ) );
}
Expand Down

0 comments on commit 4b6421c

Please sign in to comment.