Fix LineEdit edit type conversion warning

http://lists.osgeo.org/pipermail/qgis-developer/2014-June/032942.html
This commit is contained in:
Matthias Kuhn 2014-06-04 12:00:25 +02:00
parent a37b7e4e72
commit b98c2fec1b

View File

@ -152,7 +152,7 @@ const QString QgsLegacyHelpers::convertEditType( QgsVectorLayer::EditType editTy
case QgsVectorLayer::LineEdit:
{
widgetType = "LineEdit";
widgetType = "TextEdit";
cfg.insert( "IsMultiline", false );
break;
}