[property override btn] integer64 (instead of unknown type) for longlong

This commit is contained in:
Mathieu Pellerin 2017-10-26 17:36:36 +07:00 committed by GitHub
parent d31f0940e1
commit 2383edbe00

View File

@ -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;