Skip to content

Commit b9bfaf5

Browse files
pblottierenyalldawson
authored andcommittedOct 6, 2023
Layout
1 parent 4301244 commit b9bfaf5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎src/app/qgsprojectproperties.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -920,31 +920,31 @@ QgsProjectProperties::QgsProjectProperties( QgsMapCanvas *mapCanvas, QWidget *pa
920920
twWFSLayers->setCellWidget( j, 2, psb );
921921

922922
QCheckBox *cbu = new QCheckBox();
923-
cbu->setEnabled(false);
923+
cbu->setEnabled( false );
924924
if ( ( provider->capabilities() & QgsVectorDataProvider::ChangeAttributeValues ) )
925925
{
926926
if ( ! currentLayer->isSpatial() or ( provider->capabilities() & QgsVectorDataProvider::ChangeGeometries ) )
927927
{
928-
cbu->setEnabled(true);
928+
cbu->setEnabled( true );
929929
cbu->setChecked( wfstUpdateLayerIdList.contains( currentLayer->id() ) );
930930
}
931931
}
932932
twWFSLayers->setCellWidget( j, 3, cbu );
933933

934934
QCheckBox *cbi = new QCheckBox();
935-
cbi->setEnabled(false);
935+
cbi->setEnabled( false );
936936
if ( ( provider->capabilities() & QgsVectorDataProvider::AddFeatures ) )
937937
{
938-
cbi->setEnabled(true);
938+
cbi->setEnabled( true );
939939
cbi->setChecked( wfstInsertLayerIdList.contains( currentLayer->id() ) );
940940
}
941941
twWFSLayers->setCellWidget( j, 4, cbi );
942942

943943
QCheckBox *cbd = new QCheckBox();
944-
cbd->setEnabled(false);
944+
cbd->setEnabled( false );
945945
if ( ( provider->capabilities() & QgsVectorDataProvider::DeleteFeatures ) )
946946
{
947-
cbd->setEnabled(true);
947+
cbd->setEnabled( true );
948948
cbd->setChecked( wfstDeleteLayerIdList.contains( currentLayer->id() ) );
949949
}
950950
twWFSLayers->setCellWidget( j, 5, cbd );

0 commit comments

Comments
 (0)
Please sign in to comment.