Skip to content

Commit a603a3d

Browse files
committedDec 9, 2017
Use standard names for geometry types
1 parent 83dea92 commit a603a3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/gui/qgsnewgeopackagelayerdialog.cpp‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ QgsNewGeoPackageLayerDialog::QgsNewGeoPackageLayerDialog( QWidget *parent, Qt::W
7474

7575
#if 0
7676
// QGIS always create CompoundCurve and there's no real interest of having just CircularString. CompoundCurve are more useful
77-
mGeometryTypeBox->addItem( tr( "Circular string" ), wkbCircularString );
77+
mGeometryTypeBox->addItem( tr( "CircularString" ), wkbCircularString );
7878
#endif
79-
mGeometryTypeBox->addItem( tr( "Compound curve" ), wkbCompoundCurve );
80-
mGeometryTypeBox->addItem( tr( "Curve polygon" ), wkbCurvePolygon );
79+
mGeometryTypeBox->addItem( tr( "CompoundCurve" ), wkbCompoundCurve );
80+
mGeometryTypeBox->addItem( tr( "CurvePolygon" ), wkbCurvePolygon );
8181
mGeometryTypeBox->addItem( tr( "MultiCurve" ), wkbMultiCurve );
8282
mGeometryTypeBox->addItem( tr( "MultiSurface" ), wkbMultiSurface );
8383

0 commit comments

Comments
 (0)
Please sign in to comment.