Skip to content

Commit

Permalink
add separate filter for Panorama's Storage and eXchange Format
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jun 21, 2014
1 parent 07f21df commit 01412bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/providers/ogr/qgsogrprovider.cpp
Expand Up @@ -1801,6 +1801,11 @@ QString createFilters( QString type )
myFileFilters += createFileFilter_( QObject::tr( "SQLite/SpatiaLite" ), "*.sqlite *.db" );
myExtensions << "sqlite" << "db";
}
else if ( driverName.startsWith( "SXF" ) )
{
myFileFilters += createFileFilter_( QObject::tr( "Storage and eXchange Format" ), "*.sxf" );
myExtensions << "sxf";
}
else if ( driverName.startsWith( "UK .NTF" ) )
{
myDirectoryDrivers += QObject::tr( "UK. NTF2" ) + ",UK. NTF;";
Expand Down

0 comments on commit 01412bf

Please sign in to comment.