Skip to content

Commit

Permalink
[property override btn] integer64 (instead of unknown type) for longlong
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Oct 26, 2017
1 parent d31f094 commit 2383edb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/gui/qgspropertyoverridebutton.cpp
Expand Up @@ -169,6 +169,9 @@ void QgsPropertyOverrideButton::updateFieldLists()
case QVariant::Int:
fieldType = tr( "integer" );
break;
case QVariant::LongLong:
fieldType = tr( "integer64" );
break;
case QVariant::Double:
fieldType = tr( "double" );
break;
Expand Down

0 comments on commit 2383edb

Please sign in to comment.