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 e52414e commit 3a8d56eCopy full SHA for 3a8d56e
src/core/qgsvectorlayerjoinbuffer.cpp
@@ -419,7 +419,7 @@ QgsFeature QgsVectorLayerJoinBuffer::joinedFeatureOf( const QgsVectorLayerJoinIn
419
const QVariant targetValue = feature.attribute( info->targetFieldName() );
420
QString fieldRef = QgsExpression::quotedColumnRef( info->joinFieldName() );
421
QString quotedVal = QgsExpression::quotedValue( targetValue.toString() );
422
- const QString filter = QString( "%1 = %2" ).arg( fieldRef, quotedVal );
+ const QString filter = QStringLiteral( "%1 = %2" ).arg( fieldRef, quotedVal );
423
424
QgsFeatureRequest request;
425
request.setFilterExpression( filter );
0 commit comments