Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove sort order tweaks
(cherry picked from commit 8159783)
  • Loading branch information
bjornharrtell authored and nyalldawson committed Nov 21, 2019
1 parent e6eaf7b commit 3aa99e1
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -3187,10 +3187,6 @@ QList< QgsVectorFileWriter::FilterFormatDetails > QgsVectorFileWriter::supported
return true; // Make https://twitter.com/shapefiIe a sad little fellow
else if ( b.driverName == QLatin1String( "GPKG" ) )
return false;
else if ( a.driverName == QLatin1String( "FlatGeobuf" ) )
return true;
else if ( b.driverName == QLatin1String( "FlatGeobuf" ) )
return false;
else if ( a.driverName == QLatin1String( "ESRI Shapefile" ) )
return true;
else if ( b.driverName == QLatin1String( "ESRI Shapefile" ) )
Expand Down Expand Up @@ -3233,10 +3229,6 @@ QStringList QgsVectorFileWriter::supportedFormatExtensions( const VectorFormatOp
return true; // Make https://twitter.com/shapefiIe a sad little fellow
else if ( b == QLatin1String( "gpkg" ) )
return false;
else if ( a == QLatin1String( "fgb" ) )
return true;
else if ( b == QLatin1String( "fgb" ) )
return false;
else if ( a == QLatin1String( "shp" ) )
return true;
else if ( b == QLatin1String( "shp" ) )
Expand Down Expand Up @@ -3332,10 +3324,6 @@ QList< QgsVectorFileWriter::DriverDetails > QgsVectorFileWriter::ogrDriverList(
return true; // Make https://twitter.com/shapefiIe a sad little fellow
else if ( b.driverName == QLatin1String( "GPKG" ) )
return false;
else if ( a.driverName == QLatin1String( "FlatGeobuf" ) )
return true;
else if ( b.driverName == QLatin1String( "FlatGeobuf" ) )
return false;
else if ( a.driverName == QLatin1String( "ESRI Shapefile" ) )
return true;
else if ( b.driverName == QLatin1String( "ESRI Shapefile" ) )
Expand Down

0 comments on commit 3aa99e1

Please sign in to comment.