Skip to content

Commit b825ecc

Browse files
committedOct 7, 2023
fix MSVC build (followup f5230b1)
1 parent 54094b6 commit b825ecc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsprojectproperties.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ QgsProjectProperties::QgsProjectProperties( QgsMapCanvas *mapCanvas, QWidget *pa
923923
cbu->setEnabled( false );
924924
if ( ( provider->capabilities() & QgsVectorDataProvider::ChangeAttributeValues ) )
925925
{
926-
if ( ! currentLayer->isSpatial() or ( provider->capabilities() & QgsVectorDataProvider::ChangeGeometries ) )
926+
if ( ! currentLayer->isSpatial() || ( provider->capabilities() & QgsVectorDataProvider::ChangeGeometries ) )
927927
{
928928
cbu->setEnabled( true );
929929
cbu->setChecked( wfstUpdateLayerIdList.contains( currentLayer->id() ) );

0 commit comments

Comments
 (0)
Please sign in to comment.