Skip to content

Commit

Permalink
Rename geometry generator types
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Dec 10, 2015
1 parent 595f24e commit d1c0634
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/symbology-ng/qgssymbollayerv2widget.cpp
Expand Up @@ -3094,9 +3094,9 @@ QgsGeometryGeneratorSymbolLayerWidget::QgsGeometryGeneratorSymbolLayerWidget( co
{
setupUi( this );
modificationExpressionSelector->setLayer( const_cast<QgsVectorLayer*>( vl ) );
cbxGeometryType->addItem( tr( "Fill" ), QgsSymbolV2::Fill );
cbxGeometryType->addItem( tr( "Line" ), QgsSymbolV2::Line );
cbxGeometryType->addItem( tr( "Marker" ), QgsSymbolV2::Marker );
cbxGeometryType->addItem( tr( "Polygon / MultiPolygon" ), QgsSymbolV2::Fill );
cbxGeometryType->addItem( tr( "LineString / MultiLineString" ), QgsSymbolV2::Line );
cbxGeometryType->addItem( tr( "Point / MultiPoint" ), QgsSymbolV2::Marker );
connect( modificationExpressionSelector, SIGNAL( expressionParsed( bool ) ), this, SLOT( updateExpression() ) );
connect( cbxGeometryType, SIGNAL( currentIndexChanged( int ) ), this, SLOT( updateSymbolType() ) );
}
Expand Down

0 comments on commit d1c0634

Please sign in to comment.