Skip to content

Commit

Permalink
Move OpenFileGDB to alphabetical placement
Browse files Browse the repository at this point in the history
  • Loading branch information
dakcarto committed May 7, 2014
1 parent f628b77 commit 7bcba1f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/providers/ogr/qgsogrprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1637,10 +1637,6 @@ QString createFilters( QString type )
{
myDirectoryDrivers += QObject::tr( "ESRI FileGDB" ) + ",FileGDB;";
}
else if ( driverName.startsWith( "OpenFileGDB" ) )
{
myDirectoryDrivers += QObject::tr( "OpenFileGDB" ) + ",OpenFileGDB;";
}
else if ( driverName.startsWith( "PGeo" ) )
{
myDatabaseDrivers += QObject::tr( "ESRI Personal GeoDatabase" ) + ",PGeo;";
Expand Down Expand Up @@ -1746,6 +1742,10 @@ QString createFilters( QString type )
{
myDatabaseDrivers += QObject::tr( "OGDI Vectors" ) + ",OGDI;";
}
else if ( driverName.startsWith( "OpenFileGDB" ) )
{
myDirectoryDrivers += QObject::tr( "OpenFileGDB" ) + ",OpenFileGDB;";
}
else if ( driverName.startsWith( "PostgreSQL" ) )
{
myDatabaseDrivers += QObject::tr( "PostgreSQL" ) + ",PostgreSQL;";
Expand Down

0 comments on commit 7bcba1f

Please sign in to comment.