Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed superfluous bracket
Line 74  : (active layer locator filter))"  should be;  (active layer locator filter)"
Removed one superfluous bracket
  • Loading branch information
DiGro committed Sep 11, 2020
1 parent 24a605a commit 1c2b4ae
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 1c2b4ae

Please sign in to comment.