Skip to content

Commit 086b83d

Browse files
committedApr 29, 2012
allow export vector data to ESRI FileGDB
1 parent 4e70885 commit 086b83d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎src/core/qgsvectorfilewriter.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,13 @@ bool QgsVectorFileWriter::driverMetadata( QString driverName, QString &longName,
977977
glob = "*.gxt *.txt";
978978
ext = "gxt";
979979
}
980+
else if ( driverName.startsWith( "FileGDB" ) )
981+
{
982+
longName = "ESRI FileGDB";
983+
trLongName = QObject::tr( "ESRI FileGDB" );
984+
glob = "*.gdb";
985+
ext = "gdb";
986+
}
980987
else
981988
{
982989
return false;

0 commit comments

Comments
 (0)
Please sign in to comment.