Skip to content

Commit

Permalink
Merge pull request #38700 from DiGro/patch-6
Browse files Browse the repository at this point in the history
Removed superfluous bracket
  • Loading branch information
m-kuhn committed Sep 11, 2020
2 parents c9c01fd + 1c2b4ae commit 1a83d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/vector/qgssourcefieldsproperties.cpp
Expand Up @@ -71,7 +71,7 @@ QgsSourceFieldsProperties::QgsSourceFieldsProperties( QgsVectorLayer *layer, QWi
wfsWi->setToolTip( tr( "Defines if this field is available in QGIS Server WFS (and OAPIF) service" ) );
mFieldsList->setHorizontalHeaderItem( AttrWFSCol, wfsWi );
const auto searchableWi = new QTableWidgetItem( QStringLiteral( "Searchable" ) );
searchableWi->setToolTip( tr( "Defines if this field is searchable (active layer locator filter))" ) );
searchableWi->setToolTip( tr( "Defines if this field is searchable (active layer locator filter)" ) );
mFieldsList->setHorizontalHeaderItem( AttrSearchableCol, searchableWi );
mFieldsList->setHorizontalHeaderItem( AttrAliasCol, new QTableWidgetItem( tr( "Alias" ) ) );

Expand Down

0 comments on commit 1a83d21

Please sign in to comment.