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 6, 2017
1 parent 93bc31d commit 96cb8c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -683,7 +683,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 @@ -749,7 +749,7 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
QStringList()
<< QStringLiteral( "CRLF" )
<< QStringLiteral( "LF" ),
QLatin1String( "" ), // Default value
QString(), // Default value
true // Allow None
) );

Expand All @@ -764,7 +764,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 96cb8c3

Please sign in to comment.