Skip to content

Commit

Permalink
Fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 14, 2018
1 parent 6a76502 commit 22ce708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsfield.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ QString QgsField::displayString( const QVariant &v ) const
}
// Other numeric types than doubles
else if ( isNumeric() &&
! QLocale().numberOptions() & QLocale::NumberOption::OmitGroupSeparator )
!( QLocale().numberOptions() & QLocale::NumberOption::OmitGroupSeparator ) )
{
bool ok;
qlonglong converted( v.toLongLong( &ok ) );
Expand Down

0 comments on commit 22ce708

Please sign in to comment.