Skip to content

Commit 01412bf

Browse files
committedJun 21, 2014
add separate filter for Panorama's Storage and eXchange Format
1 parent 07f21df commit 01412bf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/providers/ogr/qgsogrprovider.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1801,6 +1801,11 @@ QString createFilters( QString type )
18011801
myFileFilters += createFileFilter_( QObject::tr( "SQLite/SpatiaLite" ), "*.sqlite *.db" );
18021802
myExtensions << "sqlite" << "db";
18031803
}
1804+
else if ( driverName.startsWith( "SXF" ) )
1805+
{
1806+
myFileFilters += createFileFilter_( QObject::tr( "Storage and eXchange Format" ), "*.sxf" );
1807+
myExtensions << "sxf";
1808+
}
18041809
else if ( driverName.startsWith( "UK .NTF" ) )
18051810
{
18061811
myDirectoryDrivers += QObject::tr( "UK. NTF2" ) + ",UK. NTF;";

0 commit comments

Comments
 (0)
Please sign in to comment.