Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove extra QString wrapper
  • Loading branch information
alexbruy committed Oct 5, 2016
1 parent a4bdfb7 commit 5b67d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -7535,7 +7535,7 @@ QgsVectorLayer *QgisApp::pasteToNewMemoryVector()

QgsWkbTypes::Type wkbType = !typeCounts.isEmpty() ? typeCounts.keys().value( 0 ) : QgsWkbTypes::NoGeometry;

QString typeName = wkbType != QgsWkbTypes::NoGeometry ? QString( QgsWkbTypes::displayString( wkbType ) ) : "none";
QString typeName = wkbType != QgsWkbTypes::NoGeometry ? QgsWkbTypes::displayString( wkbType ) : "none";

if ( features.isEmpty() )
{
Expand Down

0 comments on commit 5b67d2a

Please sign in to comment.