Index: src/app/qgscontinuouscolordialog.cpp =================================================================== --- src/app/qgscontinuouscolordialog.cpp (revision 11739) +++ src/app/qgscontinuouscolordialog.cpp (working copy) @@ -45,7 +45,7 @@ for ( QgsFieldMap::const_iterator it = fields.begin(); it != fields.end(); ++it ) { QVariant::Type type = it->type(); - if ( type == QVariant::Int || type == QVariant::Double ) + if ( type == QVariant::Int || type == QVariant::Double || type == QVariant::LongLong ) { displayName = mVectorLayer->attributeDisplayName( it.key() ); classificationComboBox->addItem( displayName, it.key() ); Index: src/app/qgsgraduatedsymboldialog.cpp =================================================================== --- src/app/qgsgraduatedsymboldialog.cpp (revision 11739) +++ src/app/qgsgraduatedsymboldialog.cpp (working copy) @@ -44,7 +44,7 @@ for ( QgsFieldMap::const_iterator it = fields.begin(); it != fields.end(); ++it ) { QVariant::Type type = ( *it ).type(); - if ( type == QVariant::Int || type == QVariant::Double ) + if ( type == QVariant::Int || type == QVariant::Double || type == QVariant::LongLong ) { displayName = layer->attributeDisplayName( it.key() ); classificationComboBox->addItem( displayName );