Skip to content

Commit

Permalink
allow export vector data to ESRI FileGDB
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Apr 29, 2012
1 parent 4e70885 commit 086b83d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -977,6 +977,13 @@ bool QgsVectorFileWriter::driverMetadata( QString driverName, QString &longName,
glob = "*.gxt *.txt";
ext = "gxt";
}
else if ( driverName.startsWith( "FileGDB" ) )
{
longName = "ESRI FileGDB";
trLongName = QObject::tr( "ESRI FileGDB" );
glob = "*.gdb";
ext = "gdb";
}
else
{
return false;
Expand Down

0 comments on commit 086b83d

Please sign in to comment.