Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #3176
git-svn-id: http://svn.osgeo.org/qgis/trunk@14482 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Nov 1, 2010
1 parent c5e83e5 commit 7e5a9cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -794,12 +794,12 @@ QPair<QString, QString> QgsVectorFileWriter::nameAndGlob( QString driverName )
}
else if ( driverName.startsWith( "GML" ) )
{
longName = "Geography Markup Language";
longName = "Geography Markup Language (GML)";
glob = "*.gml";
}
else if ( driverName.startsWith( "GMT" ) )
{
longName = "Generic Mapping Tools";
longName = "Generic Mapping Tools (GMT)";
glob = "*.gmt";
}
else if ( driverName.startsWith( "GPX" ) )
Expand All @@ -819,7 +819,7 @@ QPair<QString, QString> QgsVectorFileWriter::nameAndGlob( QString driverName )
}
else if ( driverName.startsWith( "KML" ) )
{
longName = "Keyhole Markup Language";
longName = "Keyhole Markup Language (KML)";
glob = "*.kml" ;
}
else if ( driverName.startsWith( "MapInfo File" ) )
Expand All @@ -839,7 +839,7 @@ QPair<QString, QString> QgsVectorFileWriter::nameAndGlob( QString driverName )
}
else if ( driverName.startsWith( "SDTS" ) )
{
longName = "Spatial Data Transfer Standard";
longName = "Spatial Data Transfer Standard (SDTS)";
glob = "*catd.ddf";
}
else if ( driverName.startsWith( "SQLite" ) )
Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsrastercalcdialogbase.ui
Expand Up @@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
<string>Raster calculator</string>
</property>
<layout class="QGridLayout" name="gridLayout_5">
<item row="0" column="0" colspan="2">
Expand Down

0 comments on commit 7e5a9cb

Please sign in to comment.