Skip to content

Commit

Permalink
typo in assigning values, fixes #9597
Browse files Browse the repository at this point in the history
Signed-off-by: Werner Macho <werner.macho@gmail.com>
  • Loading branch information
mach0 committed Mar 29, 2014
1 parent 0693fe9 commit 3dc2d8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -579,10 +579,10 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
layerOptions.insert( "LINEFORMAT", new SetOption(
QObject::tr( "By default when creating new .csv files they "
"are created with the line termination conventions "
"of the local platform (CR/LF on win32 or LF on all other systems). "
"This may be overridden through use of the LINEFORMAT option." ),
"of the local platform (CR/LF on Win32 or LF on all other systems). "
"This may be overridden through the use of the LINEFORMAT option." ),
QStringList()
<< "AS_WKT"
<< "CRLF"
<< "LF"
, "" // Default value
, true // Allow None
Expand All @@ -595,7 +595,7 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
"into their X,Y,Z components by specifying GEOMETRY=AS_XYZ, GEOMETRY=AS_XY "
"or GEOMETRY=AS_YX." ),
QStringList()
<< "CRLF"
<< "AS_WKT"
<< "AS_XYZ"
<< "AS_XY"
<< "AS_YX"
Expand All @@ -610,7 +610,7 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()
) );

layerOptions.insert( "SEPARATOR", new SetOption(
QObject::tr( "Field separator character. Default value : COMMA" ),
QObject::tr( "Field separator character." ),
QStringList()
<< "COMMA"
<< "SEMICOLON"
Expand Down

0 comments on commit 3dc2d8c

Please sign in to comment.