Skip to content

Commit

Permalink
Fix bracket formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stev-0 committed Dec 6, 2019
1 parent e379b03 commit d2e3ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsfieldvalidator.cpp
Expand Up @@ -154,7 +154,7 @@ QValidator::State QgsFieldValidator::validate( QString &s, int &i ) const
{
return QDate::fromString( s, mDateFormat ).isValid() ? Acceptable : Intermediate;
}
else if ( mField.type() == QVariant::Map) {
else if ( mField.type() == QVariant::Map ) {
return Acceptable;
}
else
Expand Down

0 comments on commit d2e3ef6

Please sign in to comment.