Skip to content

Commit

Permalink
Fix Interlis 2 extension in open dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
gacarrillor authored and m-kuhn committed May 1, 2017
1 parent d35b8b3 commit 20a1f43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/ogr/qgsogrprovider.cpp
Expand Up @@ -2280,8 +2280,8 @@ QString createFilters( const QString &type )
}
else if ( driverName.startsWith( QLatin1String( "Interlis 2" ) ) )
{
sFileFilters += createFileFilter_( QObject::tr( "INTERLIS 2" ), QStringLiteral( "*.itf *.xml *.ili" ) );
sExtensions << QStringLiteral( "itf" ) << QStringLiteral( "xml" ) << QStringLiteral( "ili" );
sFileFilters += createFileFilter_( QObject::tr( "INTERLIS 2" ), QStringLiteral( "*.xtf *.xml *.ili" ) );
sExtensions << QStringLiteral( "xtf" ) << QStringLiteral( "xml" ) << QStringLiteral( "ili" );
}
else if ( driverName.startsWith( QLatin1String( "Ingres" ) ) )
{
Expand Down

0 comments on commit 20a1f43

Please sign in to comment.