We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 07f21df commit 01412bfCopy full SHA for 01412bf
src/providers/ogr/qgsogrprovider.cpp
@@ -1801,6 +1801,11 @@ QString createFilters( QString type )
1801
myFileFilters += createFileFilter_( QObject::tr( "SQLite/SpatiaLite" ), "*.sqlite *.db" );
1802
myExtensions << "sqlite" << "db";
1803
}
1804
+ else if ( driverName.startsWith( "SXF" ) )
1805
+ {
1806
+ myFileFilters += createFileFilter_( QObject::tr( "Storage and eXchange Format" ), "*.sxf" );
1807
+ myExtensions << "sxf";
1808
+ }
1809
else if ( driverName.startsWith( "UK .NTF" ) )
1810
{
1811
myDirectoryDrivers += QObject::tr( "UK. NTF2" ) + ",UK. NTF;";
0 commit comments