Skip to content

Commit 20a1f43

Browse files
gacarrillorm-kuhn
authored andcommittedMay 1, 2017
Fix Interlis 2 extension in open dialog
1 parent d35b8b3 commit 20a1f43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/providers/ogr/qgsogrprovider.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2280,8 +2280,8 @@ QString createFilters( const QString &type )
22802280
}
22812281
else if ( driverName.startsWith( QLatin1String( "Interlis 2" ) ) )
22822282
{
2283-
sFileFilters += createFileFilter_( QObject::tr( "INTERLIS 2" ), QStringLiteral( "*.itf *.xml *.ili" ) );
2284-
sExtensions << QStringLiteral( "itf" ) << QStringLiteral( "xml" ) << QStringLiteral( "ili" );
2283+
sFileFilters += createFileFilter_( QObject::tr( "INTERLIS 2" ), QStringLiteral( "*.xtf *.xml *.ili" ) );
2284+
sExtensions << QStringLiteral( "xtf" ) << QStringLiteral( "xml" ) << QStringLiteral( "ili" );
22852285
}
22862286
else if ( driverName.startsWith( QLatin1String( "Ingres" ) ) )
22872287
{

0 commit comments

Comments
 (0)
Please sign in to comment.