Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bool initializers
  • Loading branch information
elpaso committed Dec 14, 2021
1 parent 630f3f6 commit 8e389b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgsattributeform.cpp
Expand Up @@ -1236,7 +1236,7 @@ void QgsAttributeForm::registerContainerInformation( QgsAttributeForm::Container

bool QgsAttributeForm::currentFormValidConstraints( QStringList &invalidFields, QStringList &descriptions ) const
{
bool valid( true );
bool valid{ true };

for ( QgsWidgetWrapper *ww : std::as_const( mWidgets ) )
{
Expand All @@ -1260,7 +1260,7 @@ bool QgsAttributeForm::currentFormValidConstraints( QStringList &invalidFields,

bool QgsAttributeForm::currentFormValidHardConstraints( QStringList &invalidFields, QStringList &descriptions ) const
{
bool valid( true );
bool valid{ true };

for ( QgsWidgetWrapper *ww : std::as_const( mWidgets ) )
{
Expand Down

0 comments on commit 8e389b0

Please sign in to comment.