git-svn-id: http://svn.osgeo.org/qgis/trunk@10099 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
jef 2009-02-03 15:10:11 +00:00
parent d033b0f887
commit a5c2aecd82

View File

@ -117,9 +117,15 @@ QgsVectorFileWriter::QgsVectorFileWriter( const QString& shapefileName,
int ogrPrecision = -1;
switch ( attrField.type() )
{
case QVariant::LongLong:
ogrType = OFTString;
ogrWidth = 21;
break;
case QVariant::String:
ogrType = OFTString;
break;
case QVariant::Int:
ogrType = OFTInteger;
ogrWidth = 10;