Skip to content

Commit

Permalink
Leave more defaults for vector creation to OGR
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 17, 2017
1 parent 21822a0 commit 5bce19e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -673,7 +673,7 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
QStringList()
<< QStringLiteral( "CRLF" )
<< QStringLiteral( "LF" ),
QLatin1String( "" ), // Default value
QString(), // Default value
true // Allow None
) );

Expand Down Expand Up @@ -739,7 +739,7 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
QStringList()
<< QStringLiteral( "CRLF" )
<< QStringLiteral( "LF" ),
QLatin1String( "" ), // Default value
QString(), // Default value
true // Allow None
) );

Expand All @@ -754,7 +754,7 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
<< QStringLiteral( "AS_XYZ" )
<< QStringLiteral( "AS_XY" )
<< QStringLiteral( "AS_YX" ),
QStringLiteral( "" ), // Default value
QString(), // Default value
true // Allow None
) );

Expand Down

0 comments on commit 5bce19e

Please sign in to comment.