Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1484 from serialc/master
CSV acronym added for consistency with other file type names
  • Loading branch information
mach0 committed Oct 14, 2014
2 parents 1cb22c0 + a47764d commit 89b0d7a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -632,8 +632,8 @@ QMap<QString, QgsVectorFileWriter::MetaData> QgsVectorFileWriter::initMetaData()

driverMetadata.insert( "CSV",
MetaData(
"Comma Separated Value",
QObject::tr( "Comma Separated Value" ),
"Comma Separated Value [CSV]",
QObject::tr( "Comma Separated Value [CSV]" ),
"*.csv",
"csv",
datasetOptions,
Expand Down Expand Up @@ -2212,8 +2212,8 @@ bool QgsVectorFileWriter::driverMetadata( QString driverName, QString &longName,
}
else if ( driverName.startsWith( "CSV" ) )
{
longName = "Comma Separated Value";
trLongName = QObject::tr( "Comma Separated Value" );
longName = "Comma Separated Value [CSV]";
trLongName = QObject::tr( "Comma Separated Value [CSV]" );
glob = "*.csv";
ext = "csv";
}
Expand Down

0 comments on commit 89b0d7a

Please sign in to comment.